Skip to content

Commit 48a46e4

Browse files
Kocalkbond
authored andcommitted
Fix TwigComponents test when high-deps
1 parent 98f67ff commit 48a46e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Integration/ComponentExtensionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ public function testComponentWithPropsFromTemplateAndClass(): void
425425
public function testComponentWithConflictBetweenPropsFromTemplateAndClass(): void
426426
{
427427
$this->expectException(RuntimeError::class);
428-
$this->expectExceptionMessage('Cannot define prop "name" in template "components/Conflict.html.twig". Property already defined in component class "Symfony\UX\TwigComponent\Tests\Fixtures\Component\Conflict".');
428+
$this->expectExceptionMessage('Cannot define prop "name" in template "components/Conflict.html.twig". Property already defined in component class "Symfony\UX\TwigComponent\Tests\Fixtures\Component\Conflict"');
429429

430430
self::getContainer()->get(Environment::class)->render('component_with_conflict_between_props_from_template_and_class.html.twig');
431431
}

tests/Integration/EmbeddedComponentTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public function testAccessingTheHierarchyTooHighThrowsAnException(): void
162162
{
163163
// Twig renamed "array" into "sequence" in 3.11
164164
$this->expectExceptionMessage('Key "$this" for ');
165-
$this->expectExceptionMessage('with keys "app, __embedded" does not exist.');
165+
$this->expectExceptionMessage('with keys "app, __embedded" does not exist');
166166
self::render('embedded_component_hierarchy_exception.html.twig');
167167
}
168168

0 commit comments

Comments
 (0)