We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee51ddf commit 286ee28Copy full SHA for 286ee28
tests/src/Kernel/DataProducer/RoutingTest.php
@@ -35,6 +35,7 @@ class RoutingTest extends GraphQLTestBase {
35
public function setUp(): void {
36
parent::setUp();
37
38
+ $this->installEntitySchema('path_alias');
39
$this->installEntitySchema('redirect');
40
$this->installConfig(['redirect']);
41
@@ -129,7 +130,8 @@ public function testUrlPath(): void {
129
130
'url' => $url,
131
]);
132
- $this->assertEquals('/user/logout', $result);
133
+ // Starting with Drupal 10.3 the URL has a token at the end, ignore that.
134
+ $this->assertStringStartsWith('/user/logout', $result);
135
}
136
137
/**
0 commit comments