Olivier Massot пре 2 година
родитељ
комит
3852035d0a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tests/Unit/Service/File/Storage/LocalStorageTest.php

+ 1 - 1
tests/Unit/Service/File/Storage/LocalStorageTest.php

@@ -363,7 +363,7 @@ class LocalStorageTest extends TestCase
         $this->filesystem->method('has')->with($key)->willReturn(false);
 
         $this->expectException(RuntimeException::class);
-        $this->expectDeprecationMessage('The file `' . $key . '` does not exist in the file storage');
+        $this->expectExceptionMessage('The file `' . $key . '` does not exist in the file storage');
 
         $fileStorage->writeFile($file, '12346', $author);
     }