Olivier Massot 2 лет назад
Родитель
Сommit
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);
     }