Skip to content
Snippets Groups Projects
Commit 2d2cb097 authored by Thomas Müller's avatar Thomas Müller
Browse files

fixing unit test - expected value change due to different size being stored in cache table

parent 161d80da
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,7 @@ class Cache extends \Test\TestCase {
$fileData['unkownSize'] = array('size' => 5, 'mtime' => 25, 'mimetype' => 'foo/file');
$this->cache->put($file4, $fileData['unkownSize']);
$this->assertEquals(916, $this->cache->calculateFolderSize($file1));
$this->assertEquals(1025, $this->cache->calculateFolderSize($file1));
// direct cache entry retrieval returns the original values
$entry = $this->cache->get($file1);
$this->assertEquals(1025, $entry['size']);
......
......@@ -87,7 +87,7 @@ class Quota extends \Test\Files\Storage\Storage {
$instance->getCache()->put(
'', array('size' => 7)
);
$this->assertEquals(6, $instance->free_space(''));
$this->assertEquals(2, $instance->free_space(''));
}
public function testFWriteNotEnoughSpace() {
......
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