diff --git a/tests/Css/ProcessorTest.php b/tests/Css/ProcessorTest.php index 6d9e1f9..fec088e 100644 --- a/tests/Css/ProcessorTest.php +++ b/tests/Css/ProcessorTest.php @@ -94,7 +94,9 @@ public function testCssWithMediaQueries(): void public function testCssWithBigMediaQueries(): void { - $rules = $this->processor->getRules(file_get_contents(__DIR__.'/test.css')); + $css = file_get_contents(__DIR__.'/test.css'); + $this->assertIsString($css, 'The fixture CSS file should be readable.'); + $rules = $this->processor->getRules($css); $this->assertCount(414, $rules); }