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

Cache: fix test case Updater::testRename

parent 465c100d
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ class Updater extends \PHPUnit_Framework_TestCase {
Filesystem::rename('foo.txt', 'bar.txt');
$this->assertFalse($this->cache->inCache('foo.txt'));
$this->assertTrue($this->cache->inCache('bar.txt'));
$cachedData = $this->cache->get('foo.txt');
$cachedData = $this->cache->get('bar.txt');
$this->assertNotEquals($fooCachedData['etag'], $cachedData['etag']);
$mtime = $cachedData['mtime'];
$cachedData = $this->cache->get('');
......
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