diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-07-05 14:51:22 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-07-05 14:51:22 +0200 |
commit | 3f5eb762b6d7572b68c77f0009a76ff9b1f8d946 (patch) | |
tree | 685bf11c52c54ee7bbb67b28cf3e3d16f7f06841 | |
parent | 63c83ff50bc8329d4fea4c09d724d7d944ddcb1d (diff) | |
download | nextcloud-server-3f5eb762b6d7572b68c77f0009a76ff9b1f8d946.tar.gz nextcloud-server-3f5eb762b6d7572b68c77f0009a76ff9b1f8d946.zip |
Scanner test: ensure mtime in the cache is the same as on the storage to prevent random failures
-rw-r--r-- | tests/lib/files/cache/scanner.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 042bf8991f6..263ceadccc7 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -132,6 +132,7 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->scanner->scan(''); $oldData = $this->cache->get(''); $this->storage->unlink('folder/bar.txt'); + $this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder'))); $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_SIZE); $newData = $this->cache->get(''); $this->assertNotEquals($oldData['etag'], $newData['etag']); |