From 533dd2d9e27c63dffd52f65d09466a70f29d1f61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Wed, 20 Dec 2023 00:05:07 +0200 Subject: [PATCH] test: fix test --- tests/CompilesIconsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);