mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fix locking unit tests due to filemtime addition
This commit is contained in:
parent
b900782513
commit
f355d4e51a
1 changed files with 10 additions and 2 deletions
|
|
@ -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';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue