summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-11-05 16:29:44 +0100
committerThomas Tanghus <thomas@tanghus.net>2012-11-05 16:29:44 +0100
commit831c2cac1ef0e6475a8a9cc73bafe116e13e91f6 (patch)
tree4161e80349e8ded116f61f067778950be8645efb /tests
parenta50f98606de9ff43b7c8185609af92d48295ae71 (diff)
downloadnextcloud-server-831c2cac1ef0e6475a8a9cc73bafe116e13e91f6.tar.gz
nextcloud-server-831c2cac1ef0e6475a8a9cc73bafe116e13e91f6.zip
Remove unused variable.
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/vcategories.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/vcategories.php b/tests/lib/vcategories.php
index 1d188297ad4..63516a063da 100644
--- a/tests/lib/vcategories.php
+++ b/tests/lib/vcategories.php
@@ -55,7 +55,7 @@ class Test_VCategories extends UnitTestCase {
public function testAddCategories() {
$categories = array('Friends', 'Family', 'Work', 'Other');
- $catmgr = new OC_VCategories($this->objectType, $this->user, $defcategories);
+ $catmgr = new OC_VCategories($this->objectType, $this->user);
foreach($categories as $category) {
$result = $catmgr->add($category);