diff --git a/tests/CompilesIconsTest.php b/tests/CompilesIconsTest.php index 4e036367..dabd2c78 100644 --- a/tests/CompilesIconsTest.php +++ b/tests/CompilesIconsTest.php @@ -12,7 +12,7 @@ public function it_compiles_a_single_anonymous_component() $result = svg('ri-star-line')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -24,7 +24,7 @@ public function it_can_add_classes_to_icons() $result = svg('ri-star-line', 'w-6 h-6 text-gray-500')->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result); @@ -36,7 +36,7 @@ public function it_can_add_styles_to_icons() $result = svg('ri-star-line', ['style' => 'fill: #F00'])->toHtml(); $expected = <<<'SVG' - + SVG; $this->assertSame($expected, $result);