summaryrefslogtreecommitdiffstats
path: root/3.patch
diff options
context:
space:
mode:
Diffstat (limited to '3.patch')
-rw-r--r--3.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/3.patch b/3.patch
deleted file mode 100644
index 473584e..0000000
--- a/3.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 4ce57906fee375c3cd1bb86942d8df991982eb53 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@famillecollet.com>
-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);
- }
-
- /**