WIN: fixing unit test for testStreamCopy()

This commit is contained in:
Thomas Mueller 2013-11-02 20:31:29 +01:00
parent e37047b2a0
commit 998211f7a3
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ class Test_Helper extends PHPUnit_Framework_TestCase {
return array(
array(0, false, false, false),
array(0, false, \OC::$SERVERROOT . '/tests/data/lorem.txt', false),
array(446, true, \OC::$SERVERROOT . '/tests/data/lorem.txt', \OC::$SERVERROOT . '/tests/data/lorem-copy.txt'),
array(filesize(\OC::$SERVERROOT . '/tests/data/lorem.txt'), true, \OC::$SERVERROOT . '/tests/data/lorem.txt', \OC::$SERVERROOT . '/tests/data/lorem-copy.txt'),
);
}
}