Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!703
Issue
#3175718
: Random fails due to drupal-settings-json being counted as page text
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3175718
: Random fails due to drupal-settings-json being counted as page text
issue/drupal-3175718:3175718-random-fails-due
into
9.3.x
Overview
2
Commits
19
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
Merged
Issue #3175718: Random fails due to drupal-settings-json being counted as page text
mondrake
requested to merge
issue/drupal-3175718:3175718-random-fails-due
into
9.3.x
May 22, 2021
Overview
2
Commits
19
Pipelines
0
Changes
5
All threads resolved!
Hide all comments
0
0
Merge request reports
Compare
9.3.x
version 19
98762422
Jun 21, 2021
version 18
aca95f14
May 25, 2021
version 17
0f7de5ef
May 25, 2021
version 16
0c7a0a53
May 25, 2021
version 15
6f156e7d
May 24, 2021
version 14
3ef49181
May 24, 2021
version 13
c2038fb7
May 24, 2021
version 12
172bd53e
May 24, 2021
version 11
31387ed4
May 24, 2021
version 10
88f779b6
May 24, 2021
version 9
5edf6992
May 23, 2021
version 8
18fab2a9
May 23, 2021
version 7
5aa35a44
May 23, 2021
version 6
20e4e1f4
May 23, 2021
version 5
ea449f2e
May 22, 2021
version 4
6b10ff85
May 22, 2021
version 3
4d2f0310
May 22, 2021
version 2
600c036b
May 22, 2021
version 1
2566605d
May 22, 2021
9.3.x (base)
and
latest version
latest version
98762422
19 commits,
Jun 21, 2021
version 19
98762422
19 commits,
Jun 21, 2021
version 18
aca95f14
24 commits,
May 25, 2021
version 17
0f7de5ef
23 commits,
May 25, 2021
version 16
0c7a0a53
22 commits,
May 25, 2021
version 15
6f156e7d
21 commits,
May 24, 2021
version 14
3ef49181
20 commits,
May 24, 2021
version 13
c2038fb7
19 commits,
May 24, 2021
version 12
172bd53e
15 commits,
May 24, 2021
version 11
31387ed4
13 commits,
May 24, 2021
version 10
88f779b6
11 commits,
May 24, 2021
version 9
5edf6992
10 commits,
May 23, 2021
version 8
18fab2a9
9 commits,
May 23, 2021
version 7
5aa35a44
8 commits,
May 23, 2021
version 6
20e4e1f4
7 commits,
May 23, 2021
version 5
ea449f2e
6 commits,
May 22, 2021
version 4
6b10ff85
5 commits,
May 22, 2021
version 3
4d2f0310
4 commits,
May 22, 2021
version 2
600c036b
2 commits,
May 22, 2021
version 1
2566605d
1 commit,
May 22, 2021
5 files
+
90
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
core/modules/system/tests/src/Functional/UpdateSystem/UpdatePathTestBaseFilledTest.php
+
1
−
1
View file @ 98762422
Edit in single-file editor
Open in Web IDE
Show full file
@@ -313,7 +313,7 @@ public function testUpdatedSite() {
$this
->
drupalGet
(
'admin/config/system/actions'
);
$this
->
assertSession
()
->
pageTextContains
(
'Test action'
);
$this
->
drupalGet
(
'admin/config/system/actions/configure/test_action'
);
$this
->
assertSession
()
->
pageTextContains
(
'test_action'
);
$this
->
assertSession
()
->
fieldValueEquals
(
'id'
,
'test_action'
);
$this
->
assertRaw
(
'drupal.org'
);
// Make sure our ban still exists.
Loading