diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index ed2deea3..aed927ec 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -18,6 +18,7 @@ jobs:
- "8.0"
- "8.1"
- "8.2"
+ - "8.3"
name: PHP ${{ matrix.php }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
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);