diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2014-05-09 22:10:45 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2014-05-09 22:10:45 +0200 |
commit | 1083085e6e1727d3e9008c0f8a0729fbdade39f3 (patch) | |
tree | 8b85da4a0165c3c7dbd26c33a5cdf9a974c98553 /tests/lib | |
parent | bba2d60d36f7a802ccfa78f98e09763c031a8c5f (diff) | |
parent | b54b0b2153742d0d5376045287e5874929437298 (diff) | |
download | nextcloud-server-1083085e6e1727d3e9008c0f8a0729fbdade39f3.tar.gz nextcloud-server-1083085e6e1727d3e9008c0f8a0729fbdade39f3.zip |
Merge pull request #7546 from owncloud/no_freaking_tag_dupes
Tags cleanup
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/tags.php b/tests/lib/tags.php index 97e3734cfda..976b4b4fdc8 100644 --- a/tests/lib/tags.php +++ b/tests/lib/tags.php @@ -130,7 +130,7 @@ class Test_Tags extends PHPUnit_Framework_TestCase { $tagger = $this->tagMgr->load($this->objectType); foreach($objids as $id) { - $tagger->tagAs($id, 'Family'); + $this->assertTrue($tagger->tagAs($id, 'Family')); } $this->assertEquals(1, count($tagger->getTags())); |