We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fed00e2 commit 8b7f824Copy full SHA for 8b7f824
src/TwigComponent/tests/Integration/EmbeddedComponentTest.php
@@ -160,7 +160,9 @@ public function testBlockDefinitionCanAccessTheContextOfTheDestinationBlocks():
160
161
public function testAccessingTheHierarchyTooHighThrowsAnException(): void
162
{
163
- $this->expectExceptionMessage('Key "this" for array with keys "app, __embedded" does not exist.');
+ // Twig renamed "array" into "sequence" in 3.11
164
+ $this->expectExceptionMessage('Key "$this" for ');
165
+ $this->expectExceptionMessage('with keys "app, __embedded" does not exist.');
166
self::render('embedded_component_hierarchy_exception.html.twig');
167
}
168
0 commit comments