File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/TwigComponent/tests/Integration Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -331,15 +331,15 @@ public function testRenderingHtmlSyntaxComponentWithNestedAttributes(): void
331
331
332
332
$ output = self ::getContainer ()
333
333
->get (Environment::class)
334
- ->createTemplate ('<twig:NestedAttributes class="foo" title:class="bar" title:span:class="baz" inner:class="foo" /> ' )
334
+ ->createTemplate ('<twig:NestedAttributes class="foo" title:class="bar" title:span:class="baz" inner:class="foo" inner:@class="qux" @class="vex" /> ' )
335
335
->render ()
336
336
;
337
337
338
338
$ this ->assertSame (<<<HTML
339
- <main class="foo">
339
+ <main class="foo" @class="vex" >
340
340
<div class="bar">
341
341
<span class="baz">
342
- <div class="foo"/>
342
+ <div class="foo" @class="qux" />
343
343
344
344
</span>
345
345
</div>
You can’t perform that action at this time.
0 commit comments