Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-08-12 21:53:57 +0400
committerRobin Appelman <icewind@owncloud.com>2013-08-12 21:53:57 +0400
commitc6e62f5e4c9616e16198a3cb73af11e700b0f0c7 (patch)
tree8aa5d05f41e6e0c358516a8261065ef7752896ac /tests
parent6325cf6ecb70f46099fd692c45672fb2afdbb692 (diff)
fix namespacess for scanner test
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/utils/scanner.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/lib/files/utils/scanner.php b/tests/lib/files/utils/scanner.php
index a021d215ae5..3ddae65455a 100644
--- a/tests/lib/files/utils/scanner.php
+++ b/tests/lib/files/utils/scanner.php
@@ -8,17 +8,17 @@
namespace Test\Files\Utils;
-use OC\Files\Mount\Mount;
+use OC\Files\Mount;
use OC\Files\Storage\Temporary;
class TestScanner extends \OC\Files\Utils\Scanner {
/**
- * @var \OC\Files\Mount\Mount[] $mounts
+ * @var \OC\Files\Mount[] $mounts
*/
private $mounts = array();
/**
- * @param \OC\Files\Mount\Mount $mount
+ * @param \OC\Files\Mount $mount
*/
public function addMount($mount) {
$this->mounts[] = $mount;