Skip to content

Commit f13fef7

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent a9a023d commit f13fef7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Unit/Views/Columns/ArrayColumnTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ public function test_can_get_empty_value(): void
8080
$this->assertSame('Unknown', self::$columnInstance->getEmptyValue());
8181

8282
}
83-
83+
8484
public function test_can_use_wrapper(): void
8585
{
8686
self::$columnInstance
8787
->data(fn ($value, $row) => ($row->pets))
8888
->outputFormat(fn ($index, $value) => '<a href="'.$value->id.'">'.$value->name.'</a>')
8989
->wrapperStart('<div class="start-of-wrapper">')
90-
->wrapperEnd("</div>");
90+
->wrapperEnd('</div>');
9191

9292
$contents = self::$columnInstance->getContents(Veterinary::find(1));
9393
$this->assertSame('<div class="start-of-wrapper"><a href="1">Cartman</a><a href="2">Tux</a></div>', $contents->toHtml());
@@ -99,7 +99,7 @@ public function test_can_use_wrapper_ul(): void
9999
->data(fn ($value, $row) => ($row->pets))
100100
->outputFormat(fn ($index, $value) => '<li><a href="'.$value->id.'">'.$value->name.'</a></li>')
101101
->wrapperStart('<ul class="start-of-wrapper">')
102-
->wrapperEnd("</ul>");
102+
->wrapperEnd('</ul>');
103103

104104
$contents = self::$columnInstance->getContents(Veterinary::find(1));
105105
$this->assertSame('<ul class="start-of-wrapper"><li><a href="1">Cartman</a></li><li><a href="2">Tux</a></li></ul>', $contents->toHtml());

0 commit comments

Comments
 (0)