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
331331
332332 $ output = self ::getContainer ()
333333 ->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" /> ' )
335335 ->render ()
336336 ;
337337
338338 $ this ->assertSame (<<<HTML
339- <main class="foo">
339+ <main class="foo" @class="vex" >
340340 <div class="bar">
341341 <span class="baz">
342- <div class="foo"/>
342+ <div class="foo" @class="qux" />
343343
344344 </span>
345345 </div>
You can’t perform that action at this time.
0 commit comments