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
!4998
Issue
#3393800
: Kernel tests can't use path aliases on entities
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
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
All threads resolved!
Hide all comments
Closed
Issue #3393800: Kernel tests can't use path aliases on entities
Michael Strelan
requested to merge
issue/drupal-3393800:3393800-kernel-tests-cant
into
11.x
Oct 13, 2023
Overview
4
Commits
14
Pipelines
14
Changes
18
All threads resolved!
Hide all comments
0
0
Merge request reports
Compare
11.x
version 14
433c165c
Dec 25, 2023
version 13
4fa3bde5
Nov 7, 2023
version 12
e509c90b
Oct 30, 2023
version 11
04bc3c91
Oct 16, 2023
version 10
a9255c15
Oct 16, 2023
version 9
371f9301
Oct 16, 2023
version 8
fe8aa1a0
Oct 15, 2023
version 7
3370ad12
Oct 15, 2023
version 6
76daab12
Oct 15, 2023
version 5
14ac8971
Oct 13, 2023
version 4
38b3c407
Oct 13, 2023
version 3
8bd7eef5
Oct 13, 2023
version 2
1c968217
Oct 13, 2023
version 1
3d6a6b10
Oct 13, 2023
11.x (base)
and
latest version
latest version
4b4fd9ef
14 commits,
Dec 25, 2023
version 14
433c165c
15 commits,
Dec 25, 2023
version 13
4fa3bde5
13 commits,
Nov 7, 2023
version 12
e509c90b
12 commits,
Oct 30, 2023
version 11
04bc3c91
12 commits,
Oct 16, 2023
version 10
a9255c15
11 commits,
Oct 16, 2023
version 9
371f9301
10 commits,
Oct 16, 2023
version 8
fe8aa1a0
9 commits,
Oct 15, 2023
version 7
3370ad12
8 commits,
Oct 15, 2023
version 6
76daab12
7 commits,
Oct 15, 2023
version 5
14ac8971
6 commits,
Oct 13, 2023
version 4
38b3c407
4 commits,
Oct 13, 2023
version 3
8bd7eef5
3 commits,
Oct 13, 2023
version 2
1c968217
2 commits,
Oct 13, 2023
version 1
3d6a6b10
1 commit,
Oct 13, 2023
18 files
+
69
−
55
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
core/modules/block/tests/src/Kernel/Migrate/d6/MigrateBlockContentTranslationTest.php
+
1
−
0
View file @ 4b4fd9ef
Edit in single-file editor
Open in Web IDE
Show full file
@@ -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