diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-10-11 22:39:20 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-10-11 22:39:50 +0200 |
commit | ee28e35ba93032a3d43601c030d3d44df9b092f0 (patch) | |
tree | de42d727634b7d446fc9d962067e78a1f8dc5ea2 /tests | |
parent | 87d4aaf287f149bb837e3f0b56fb7a0a0dc5c107 (diff) | |
download | nextcloud-server-ee28e35ba93032a3d43601c030d3d44df9b092f0.tar.gz nextcloud-server-ee28e35ba93032a3d43601c030d3d44df9b092f0.zip |
fix storage test case
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/filestorage.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/lib/filestorage.php b/tests/lib/filestorage.php index 9c6e3f6b8c1..e82a6f54e3d 100644 --- a/tests/lib/filestorage.php +++ b/tests/lib/filestorage.php @@ -173,11 +173,9 @@ abstract class Test_FileStorage extends UnitTestCase { $supportsTouch = $this->instance->touch('/lorem.txt'); $mtimeEnd = time(); if ($supportsTouch !== false) { - $originalCTime = $cTime; $mTime = $this->instance->filemtime('/lorem.txt'); $this->assertTrue(($mtimeStart - 1) <= $mTime); $this->assertTrue($mTime <= ($mtimeEnd + 1)); - $this->assertEqual($cTime, $originalCTime); $this->assertTrue($this->instance->hasUpdated('/lorem.txt', $mtimeStart - 1)); @@ -193,7 +191,6 @@ abstract class Test_FileStorage extends UnitTestCase { fclose($fh); clearstatcache(); $mtimeEnd = time(); - $originalCTime = $cTime; $mTime = $this->instance->filemtime('/lorem.txt'); $this->assertTrue(($mtimeStart - 1) <= $mTime); $this->assertTrue($mTime <= ($mtimeEnd + 1)); |