aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2014-06-05 11:31:55 +0200
committerRobin Appelman <icewind@owncloud.com>2014-06-05 11:31:55 +0200
commit9dab6ec2ec29852a32b2d3f21f3115c86c3797bc (patch)
tree8320bcb2b399fb0d1fe81d64d2cc246e27f388c9 /tests
parent3e732517503b50e8d399d1554e08a66eb114ffaf (diff)
downloadnextcloud-server-9dab6ec2ec29852a32b2d3f21f3115c86c3797bc.tar.gz
nextcloud-server-9dab6ec2ec29852a32b2d3f21f3115c86c3797bc.zip
Fix uit tests
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/utils/scanner.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/files/utils/scanner.php b/tests/lib/files/utils/scanner.php
index 159a2a48677..5e5cc6ac128 100644
--- a/tests/lib/files/utils/scanner.php
+++ b/tests/lib/files/utils/scanner.php
@@ -112,7 +112,7 @@ class Scanner extends \PHPUnit_Framework_TestCase {
$this->assertEquals(array('/foo', '/foo/folder', '/foo/folder/bar.txt', '/foo/foo.txt'), $changes);
$this->assertEquals(array('/', '/foo', '/foo/folder'), $parents);
- $cache->put('foo.txt', array('mtime' => time() - 50));
+ $cache->put('foo.txt', array('storage_mtime' => time() - 50));
$propagator = $this->getMock('\OC\Files\Cache\ChangePropagator', array('propagateChanges'), array(), '', false);
$scanner->setPropagator($propagator);
@@ -128,7 +128,7 @@ class Scanner extends \PHPUnit_Framework_TestCase {
$scanner->setPropagator($originalPropagator);
$oldInfo = $cache->get('');
- $cache->put('foo.txt', array('mtime' => time() - 70));
+ $cache->put('foo.txt', array('storage_mtime' => time() - 70));
$storage->file_put_contents('foo.txt', 'asdasd');
$scanner->scan('');