Skip to content
Snippets Groups Projects
Commit c609b308 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix the filestorage test a bit

parent 1794ad35
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,8 @@ abstract class Test_FileStorage extends UnitTestCase {
$mTime=$this->instance->filemtime('/lorem.txt');
$this->assertTrue($ctimeStart<=$cTime);
$this->assertTrue($cTime<=$ctimeEnd);
$this->assertEqual($cTime,$mTime);
$this->assertTrue($ctimeStart<=$mTime);
$this->assertTrue($mTime<=$ctimeEnd);
$this->assertEqual(filesize($textFile),$this->instance->filesize('/lorem.txt'));
$stat=$this->instance->stat('/lorem.txt');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment