diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-30 17:20:40 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-30 17:20:40 +0100 |
commit | f776bcd4a0e58a8803ae4bf922bb278f6a5c5203 (patch) | |
tree | de248013ff131094a6ff91399ae71b17966a9cb6 /apps/files_versions/tests | |
parent | 90e523ead09436c54993ea527a1eec3faad7a0bd (diff) | |
download | nextcloud-server-f776bcd4a0e58a8803ae4bf922bb278f6a5c5203.tar.gz nextcloud-server-f776bcd4a0e58a8803ae4bf922bb278f6a5c5203.zip |
remove unnecessary require calls - the ownCloud class loader is supposed to take care of this
Diffstat (limited to 'apps/files_versions/tests')
-rw-r--r-- | apps/files_versions/tests/versions.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_versions/tests/versions.php b/apps/files_versions/tests/versions.php index 558c8dfcb8a..4909d0606b1 100644 --- a/apps/files_versions/tests/versions.php +++ b/apps/files_versions/tests/versions.php @@ -32,6 +32,9 @@ class Test_Files_Versioning extends \PHPUnit_Framework_TestCase { const TEST_VERSIONS_USER = 'test-versions-user'; const USERS_VERSIONS_ROOT = '/test-versions-user/files_versions'; + /** + * @var \OC\Files\View + */ private $rootView; public static function setUpBeforeClass() { @@ -63,7 +66,7 @@ class Test_Files_Versioning extends \PHPUnit_Framework_TestCase { */ function testGetExpireList($versions, $sizeOfAllDeletedFiles) { - // last interval enda at 2592000 + // last interval end at 2592000 $startTime = 5000000; $testClass = new VersionStorageToTest(); |