From f355d4e51a1b597d4e763a10e3ebadb925b0c779 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 19 Oct 2015 15:48:49 +0200 Subject: [PATCH] Fix locking unit tests due to filemtime addition --- tests/lib/files/view.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index a84b8badd5..a7979146b8 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -1976,9 +1976,13 @@ class View extends \Test\TestCase { $view = new \OC\Files\View('/' . $this->user . '/files/'); $storage = $this->getMockBuilder('\OC\Files\Storage\Temporary') - ->setMethods([$operation]) + ->setMethods([$operation, 'filemtime']) ->getMock(); + $storage->expects($this->any()) + ->method('filemtime') + ->will($this->returnValue(123456789)); + $sourcePath = 'original.txt'; $targetPath = 'target.txt'; @@ -2117,9 +2121,13 @@ class View extends \Test\TestCase { ->setMethods([$storageOperation]) ->getMock(); $storage2 = $this->getMockBuilder('\OC\Files\Storage\Temporary') - ->setMethods([$storageOperation]) + ->setMethods([$storageOperation, 'filemtime']) ->getMock(); + $storage2->expects($this->any()) + ->method('filemtime') + ->will($this->returnValue(123456789)); + $sourcePath = 'original.txt'; $targetPath = 'substorage/target.txt';