diff options
author | Robin Appelman <robin@icewind.nl> | 2019-06-21 17:14:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-21 17:14:27 +0200 |
commit | 1ad95caf24870dfb6d5cf36fa5822046522559ac (patch) | |
tree | de6b2fd7b0e473cb31e61b3639a3c7e1d87a9e92 /tests | |
parent | 9d121985dc2980ca9c3b4a69d807926d2424757d (diff) | |
parent | 000898d932abd60ef1ae9f2167c437864f19087a (diff) | |
download | nextcloud-server-1ad95caf24870dfb6d5cf36fa5822046522559ac.tar.gz nextcloud-server-1ad95caf24870dfb6d5cf36fa5822046522559ac.zip |
Merge pull request #15889 from nextcloud/touch-handle-backend-exceptions
handle storage exceptions when trying to set mtime
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Files/ViewTest.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/Files/ViewTest.php b/tests/lib/Files/ViewTest.php index 7a32736adb3..4697dbe89d8 100644 --- a/tests/lib/Files/ViewTest.php +++ b/tests/lib/Files/ViewTest.php @@ -1962,6 +1962,9 @@ class ViewTest extends \Test\TestCase { $operationArgs, $path ) { + if ($operation === 'touch') { + $this->markTestSkipped("touch handles storage exceptions internally"); + } $view = new View('/' . $this->user . '/files/'); /** @var Temporary|\PHPUnit_Framework_MockObject_MockObject $storage */ |