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);
     }