get rid of failing test that don't cause additional downloads

This commit is contained in:
Robin Appelman 2013-12-06 18:26:38 +01:00
parent cf9b7e343a
commit e888bdda30
3 changed files with 24 additions and 24 deletions

0
config/config.sample.php Normal file → Executable file
View File

View File

@ -59,7 +59,7 @@ class EtagTest extends \PHPUnit_Framework_TestCase {
Filesystem::file_put_contents('/folder/bar.txt', 'fgh');
Filesystem::file_put_contents('/folder/subfolder/qwerty.txt', 'jkl');
$files = array('/', '/folder', '/foo.txt', '/folder/bar.txt', '/folder/subfolder', '/folder/subfolder/qwerty.txt');
$files = array('/foo.txt', '/folder/bar.txt', '/folder/subfolder', '/folder/subfolder/qwerty.txt');
$originalEtags = $this->getEtags($files);
$scanner = new \OC\Files\Utils\Scanner($user1);