Skip to content

Commit 3452436

Browse files
committed
fabbot
1 parent 1ed1db7 commit 3452436

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/TwigComponent/tests/Integration/ComponentExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,11 +352,11 @@ public static function providePrefixedAttributesCases(): iterable
352352
// Not AlpineJS
353353
yield ['z-click="count++"', true];
354354
yield ['z-on:click="count++"', false]; // Nested
355-
355+
356356
// Stencil
357357
yield ['onClick="count++"', true];
358358
yield ['@onClick="count++"', true];
359-
359+
360360
// VueJs
361361
yield ['v-model="message"', true];
362362
yield ['v-bind:id="dynamicId"', true];

src/TwigComponent/tests/Unit/ComponentAttributesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public function testNestedAttributes(): void
258258
$this->assertSame(' class="baz"', (string) $attributes->nested('title')->nested('span'));
259259
$this->assertSame('', (string) $attributes->nested('invalid'));
260260
}
261-
261+
262262
public function testPrefixedAttributes(): void
263263
{
264264
$attributes = new ComponentAttributes([

0 commit comments

Comments
 (0)