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
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!4998
Issue
#3393800
: Kernel tests can't use path aliases on entities
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Issue
#3393800
: Kernel tests can't use path aliases on entities
issue/drupal-3393800:3393800-kernel-tests-cant
into
11.x
Overview
4
Commits
14
Pipelines
14
Changes
18
Closed
Michael Strelan
requested to merge
issue/drupal-3393800:3393800-kernel-tests-cant
into
11.x
1 year ago
Overview
4
Commits
14
Pipelines
14
Changes
18
Expand
0
0
Merge request reports
Compare
11.x
version 14
433c165c
1 year ago
version 13
4fa3bde5
1 year ago
version 12
e509c90b
1 year ago
version 11
04bc3c91
1 year ago
version 10
a9255c15
1 year ago
version 9
371f9301
1 year ago
version 8
fe8aa1a0
1 year ago
version 7
3370ad12
1 year ago
version 6
76daab12
1 year ago
version 5
14ac8971
1 year ago
version 4
38b3c407
1 year ago
version 3
8bd7eef5
1 year ago
version 2
1c968217
1 year ago
version 1
3d6a6b10
1 year ago
11.x (base)
and
latest version
latest version
4b4fd9ef
14 commits,
1 year ago
version 14
433c165c
15 commits,
1 year ago
version 13
4fa3bde5
13 commits,
1 year ago
version 12
e509c90b
12 commits,
1 year ago
version 11
04bc3c91
12 commits,
1 year ago
version 10
a9255c15
11 commits,
1 year ago
version 9
371f9301
10 commits,
1 year ago
version 8
fe8aa1a0
9 commits,
1 year ago
version 7
3370ad12
8 commits,
1 year ago
version 6
76daab12
7 commits,
1 year ago
version 5
14ac8971
6 commits,
1 year ago
version 4
38b3c407
4 commits,
1 year ago
version 3
8bd7eef5
3 commits,
1 year ago
version 2
1c968217
2 commits,
1 year ago
version 1
3d6a6b10
1 commit,
1 year ago
18 files
+
69
−
55
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockContentTranslationTest.php
+
1
−
0
Options
@@ -34,6 +34,7 @@ class MigrateBlockContentTranslationTest extends MigrateDrupal6TestBase {
protected
function
setUp
():
void
{
parent
::
setUp
();
$this
->
installEntitySchema
(
'block_content'
);
$this
->
installEntitySchema
(
'path_alias'
);
$this
->
installConfig
([
'block'
]);
$this
->
installConfig
([
'block_content'
]);
$this
->
container
->
get
(
'theme_installer'
)
->
install
([
'stark'
]);
Loading