浏览代码

fix unit tests

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