Skip to content

Commit faa061d

Browse files
committed
CS
1 parent 78cf7f1 commit faa061d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Icons/tests/Unit/IconRendererTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,19 +180,19 @@ public function testRenderIconWithAutoAriaHidden(array $attributes, string $expe
180180
*/
181181
public static function provideAriaHiddenCases(): iterable
182182
{
183-
yield "no attributes" => [
183+
yield 'no attributes' => [
184184
[],
185185
'<svg aria-hidden="true"><path d="M0 0L12 12"/></svg>',
186186
];
187-
yield "aria-hidden attribute" => [
187+
yield 'aria-hidden attribute' => [
188188
['aria-hidden' => 'true'],
189189
'<svg aria-hidden="true"><path d="M0 0L12 12"/></svg>',
190190
];
191-
yield "title attribute" => [
191+
yield 'title attribute' => [
192192
['title' => 'foo'],
193193
'<svg title="foo"><path d="M0 0L12 12"/></svg>',
194194
];
195-
yield "aria-labelledby attribute" => [
195+
yield 'aria-labelledby attribute' => [
196196
['aria-labelledby' => 'foo'],
197197
'<svg aria-labelledby="foo"><path d="M0 0L12 12"/></svg>',
198198
];

0 commit comments

Comments
 (0)