From 4ce57906fee375c3cd1bb86942d8df991982eb53 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 22 Sep 2020 07:53:33 +0200 Subject: [PATCH] Fix test failure with 8.0.0beta4 --- src/FinfoMimeTypeDetectorTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FinfoMimeTypeDetectorTest.php b/src/FinfoMimeTypeDetectorTest.php index 9f6c91b..606ecaa 100644 --- a/src/FinfoMimeTypeDetectorTest.php +++ b/src/FinfoMimeTypeDetectorTest.php @@ -71,7 +71,7 @@ public function detecting_from_a_file_location(): void { $mimeType = $this->detector->detectMimeTypeFromFile(__DIR__.'/../test_files/flysystem.svg'); - $this->assertEquals('image/svg', $mimeType); + $this->assertStringStartsWith('image/svg', $mimeType); } /**