File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments