Issue #3376340 by quietone, smustgrave: Remove use of tour in non profile and update tests

merge-requests/4470/head
Lauri Eskola 2023-07-24 23:08:50 +03:00
parent 69e6c4451c
commit 5ac5a2b6c3
No known key found for this signature in database
GPG Key ID: 382FC0F5B0DF53F8
2 changed files with 3 additions and 4 deletions

View File

@ -14,7 +14,7 @@ class HelpPageOrderTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['help', 'tour'];
protected static $modules = ['help', 'help_page_test'];
/**
* {@inheritdoc}
@ -28,7 +28,7 @@ class HelpPageOrderTest extends BrowserTestBase {
*/
protected $stringOrder = [
'Module overviews are provided',
'Tours guide you',
'This description should appear',
];
/**
@ -42,7 +42,6 @@ class HelpPageOrderTest extends BrowserTestBase {
'access help pages',
'view the administration theme',
'administer permissions',
'access tour',
]);
$this->drupalLogin($account);
}

View File

@ -27,7 +27,7 @@ class HelpPageReverseOrderTest extends HelpPageOrderTest {
* @var string[]
*/
protected $stringOrder = [
'Tours guide you',
'This description should appear',
'Module overviews are provided',
];