Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
form_mode_manager
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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
form_mode_manager
Merge requests
!8
Issue
#3297262
: Automated Drupal 10 compatibility fixes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3297262
: Automated Drupal 10 compatibility fixes
issue/form_mode_manager-3297262:3297262-automated-drupal-10
into
8.x-2.x
Overview
83
Commits
23
Pipelines
7
Changes
14
Merged
Mikhail Oleynik
requested to merge
issue/form_mode_manager-3297262:3297262-automated-drupal-10
into
8.x-2.x
2 years ago
Overview
36
Commits
23
Pipelines
7
Changes
14
Expand
1
0
Merge request reports
Compare
8.x-2.x
version 25
ab6e6203
1 year ago
version 24
628e3840
1 year ago
version 23
2c564b3b
1 year ago
version 22
f91b155f
1 year ago
version 21
c03960cf
1 year ago
version 20
115b04ac
1 year ago
version 19
6afd48f8
1 year ago
version 18
af8bc72a
1 year ago
version 17
e765fd79
1 year ago
version 16
df24d5e6
1 year ago
version 15
48265949
1 year ago
version 14
2643b91c
1 year ago
version 13
9d52b2ce
1 year ago
version 12
17b1e1fe
1 year ago
version 11
17b1e1fe
1 year ago
version 10
cbe72ad3
1 year ago
version 9
6a213cb9
1 year ago
version 8
3dda2eaf
1 year ago
version 7
3dda2eaf
1 year ago
version 6
a3d2cd16
1 year ago
version 5
b1137d59
1 year ago
version 4
69759290
1 year ago
version 3
b904d919
1 year ago
version 2
47937bef
2 years ago
version 1
07fe1f9c
2 years ago
8.x-2.x (base)
and
latest version
latest version
cfcf2a5d
23 commits,
1 year ago
version 25
ab6e6203
22 commits,
1 year ago
version 24
628e3840
21 commits,
1 year ago
version 23
2c564b3b
20 commits,
1 year ago
version 22
f91b155f
19 commits,
1 year ago
version 21
c03960cf
18 commits,
1 year ago
version 20
115b04ac
19 commits,
1 year ago
version 19
6afd48f8
18 commits,
1 year ago
version 18
af8bc72a
18 commits,
1 year ago
version 17
e765fd79
17 commits,
1 year ago
version 16
df24d5e6
16 commits,
1 year ago
version 15
48265949
15 commits,
1 year ago
version 14
2643b91c
14 commits,
1 year ago
version 13
9d52b2ce
13 commits,
1 year ago
version 12
17b1e1fe
12 commits,
1 year ago
version 11
17b1e1fe
12 commits,
1 year ago
version 10
cbe72ad3
17 commits,
1 year ago
version 9
6a213cb9
16 commits,
1 year ago
version 8
3dda2eaf
14 commits,
1 year ago
version 7
3dda2eaf
14 commits,
1 year ago
version 6
a3d2cd16
13 commits,
1 year ago
version 5
b1137d59
12 commits,
1 year ago
version 4
69759290
11 commits,
1 year ago
version 3
b904d919
10 commits,
1 year ago
version 2
47937bef
3 commits,
2 years ago
version 1
07fe1f9c
2 commits,
2 years ago
14 files
+
157
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
modules/examples/tests/src/Functional/FormModeManagerExamplesTest.php
+
7
−
8
Options
@@ -38,15 +38,14 @@ class FormModeManagerExamplesTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
public
function
setUp
()
{
public
function
setUp
()
:
void
{
parent
::
setUp
();
// Theme needs to be set before enabling form_mode_manager_examples because,
// of dependency.
\Drupal
::
service
(
'theme_installer'
)
->
install
([
'bartik'
]);
$this
->
config
(
'system.theme'
)
->
set
(
'default'
,
'bartik'
)
->
save
();
$this
->
assertTrue
(
\Drupal
::
service
(
'module_installer'
)
->
install
([
'form_mode_manager_examples'
]),
'form_mode_manager_examples installed.'
);
$this
->
assertTrue
(
\Drupal
::
service
(
'module_installer'
)
->
install
([
'form_mode_manager_examples'
]),
'form_mode_manager_examples installed.'
);
$this
->
drupalPlaceBlock
(
'local_actions_block'
);
\Drupal
::
service
(
'router.builder'
)
->
rebuild
();
}
Loading