diff --git a/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php b/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php index 86d06e3..4a23aee 100644 --- a/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php +++ b/core/modules/system/tests/src/Functional/Module/PrepareUninstallTest.php @@ -138,14 +138,14 @@ public function testUninstall() { // Check there is no more data to be deleted, Node is ready to be // uninstalled. - $this->assertText('Allows content to be submitted to the site and displayed on pages.'); + $this->assertText('Manages the creation, configuration, and display of the main site content.'); $this->assertNoLinkByHref('admin/modules/uninstall/entity/node'); // Uninstall Node module. $this->drupalPostForm('admin/modules/uninstall', ['uninstall[node]' => TRUE], t('Uninstall')); $this->drupalPostForm(NULL, [], t('Uninstall')); $this->assertText('The selected modules have been uninstalled.'); - $this->assertNoText('Allows content to be submitted to the site and displayed on pages.'); + $this->assertNoText('Manages the creation, configuration, and display of the main site content.'); // Ensure the proper response when accessing a non-existent entity type. $this->drupalGet('admin/modules/uninstall/entity/node');