diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-08-04 14:29:46 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-09-05 11:53:23 +0200 |
commit | 850542c5d61cd68f46d028e2bbbe21ed69d37c96 (patch) | |
tree | 27a2a85f9707148768d8ff2c1994aeef22b0d162 /tests | |
parent | 614cf996ca74d26263f3ffeb43e7a9b81eadfae6 (diff) | |
download | nextcloud-server-850542c5d61cd68f46d028e2bbbe21ed69d37c96.tar.gz nextcloud-server-850542c5d61cd68f46d028e2bbbe21ed69d37c96.zip |
Refactor Cache\Updater to work outside of the users home
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/files/cache/updater.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index b874e418100..39c521c6ef6 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -266,7 +266,6 @@ class Updater extends \PHPUnit_Framework_TestCase { $cachedData = $this->cache->get('foo.txt'); $this->assertInternalType('string', $fooCachedData['etag']); $this->assertInternalType('string', $cachedData['etag']); - $this->assertNotSame($fooCachedData['etag'], $cachedData['etag']); $this->assertGreaterThanOrEqual($fooCachedData['mtime'], $cachedData['mtime']); $cachedData = $this->cache->get(''); |