diff --git a/core/modules/aggregator/src/Tests/AggregatorConfigurationTest.php b/core/modules/aggregator/src/Tests/AggregatorConfigurationTest.php index 4feb6c6a467..b791d203e77 100644 --- a/core/modules/aggregator/src/Tests/AggregatorConfigurationTest.php +++ b/core/modules/aggregator/src/Tests/AggregatorConfigurationTest.php @@ -52,7 +52,7 @@ class AggregatorConfigurationTest extends AggregatorTestBase { $this->assertText(t('The configuration options have been saved.')); $this->assertFieldByName('dummy_length', 100, '"dummy_length" has correct default value.'); - // Make sure settings form is still accessible even after disabling a module + // Make sure settings form is still accessible even after uninstalling a module // that provides the selected plugins. $this->container->get('module_handler')->uninstall(array('aggregator_test')); $this->resetAll(); diff --git a/core/modules/aggregator/src/Tests/AggregatorRenderingTest.php b/core/modules/aggregator/src/Tests/AggregatorRenderingTest.php index 844f0b11f0e..efb3d2ff0bc 100644 --- a/core/modules/aggregator/src/Tests/AggregatorRenderingTest.php +++ b/core/modules/aggregator/src/Tests/AggregatorRenderingTest.php @@ -17,7 +17,7 @@ use Drupal\Component\Utility\String; class AggregatorRenderingTest extends AggregatorTestBase { /** - * Modules to enable. + * Modules to install. * * @var array */ diff --git a/core/modules/aggregator/src/Tests/AggregatorTestBase.php b/core/modules/aggregator/src/Tests/AggregatorTestBase.php index 57fcf886ed9..616e1e282eb 100644 --- a/core/modules/aggregator/src/Tests/AggregatorTestBase.php +++ b/core/modules/aggregator/src/Tests/AggregatorTestBase.php @@ -17,7 +17,7 @@ use Drupal\aggregator\FeedInterface; abstract class AggregatorTestBase extends WebTestBase { /** - * Modules to enable. + * Modules to install. * * @var array */ diff --git a/core/modules/aggregator/src/Tests/DeleteFeedTest.php b/core/modules/aggregator/src/Tests/DeleteFeedTest.php index 90cd5f1d5e5..6ec7c501c5a 100644 --- a/core/modules/aggregator/src/Tests/DeleteFeedTest.php +++ b/core/modules/aggregator/src/Tests/DeleteFeedTest.php @@ -15,7 +15,7 @@ namespace Drupal\aggregator\Tests; class DeleteFeedTest extends AggregatorTestBase { /** - * Modules to enable. + * Modules to install. * * @var array */ diff --git a/core/modules/aggregator/src/Tests/FeedLanguageTest.php b/core/modules/aggregator/src/Tests/FeedLanguageTest.php index 09c608c9317..c3343d39264 100644 --- a/core/modules/aggregator/src/Tests/FeedLanguageTest.php +++ b/core/modules/aggregator/src/Tests/FeedLanguageTest.php @@ -17,7 +17,7 @@ use Drupal\language\Entity\ConfigurableLanguage; class FeedLanguageTest extends AggregatorTestBase { /** - * Modules to enable. + * Modules to install. * * @var array */ diff --git a/core/modules/aggregator/src/Tests/ImportOpmlTest.php b/core/modules/aggregator/src/Tests/ImportOpmlTest.php index 821a34ab9f2..5d0ebe77e08 100644 --- a/core/modules/aggregator/src/Tests/ImportOpmlTest.php +++ b/core/modules/aggregator/src/Tests/ImportOpmlTest.php @@ -15,7 +15,7 @@ namespace Drupal\aggregator\Tests; class ImportOpmlTest extends AggregatorTestBase { /** - * Modules to enable. + * Modules to install. * * @var array */ diff --git a/core/modules/aggregator/src/Tests/UpdateFeedItemTest.php b/core/modules/aggregator/src/Tests/UpdateFeedItemTest.php index a7441802e7d..b9292496bf0 100644 --- a/core/modules/aggregator/src/Tests/UpdateFeedItemTest.php +++ b/core/modules/aggregator/src/Tests/UpdateFeedItemTest.php @@ -64,7 +64,7 @@ class UpdateFeedItemTest extends AggregatorTestBase { $after = db_query('SELECT timestamp FROM {aggregator_item} WHERE fid = :fid', array(':fid' => $feed->id()))->fetchField(); $this->assertTrue($before === $after, format_string('Publish timestamp of feed item was not updated (!before === !after)', array('!before' => $before, '!after' => $after))); - // Make sure updating items works even after disabling a module + // Make sure updating items works even after uninstalling a module // that provides the selected plugins. $this->enableTestPlugins(); $this->container->get('module_handler')->uninstall(array('aggregator_test')); diff --git a/core/modules/aggregator/src/Tests/Views/IntegrationTest.php b/core/modules/aggregator/src/Tests/Views/IntegrationTest.php index 2bbb41c363d..4608bd7e154 100644 --- a/core/modules/aggregator/src/Tests/Views/IntegrationTest.php +++ b/core/modules/aggregator/src/Tests/Views/IntegrationTest.php @@ -20,7 +20,7 @@ use Drupal\views\Tests\ViewUnitTestBase; class IntegrationTest extends ViewUnitTestBase { /** - * Modules to enable. + * Modules to install. * * @var array */