diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-19 13:55:45 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-09-19 13:55:45 +0200 |
commit | de81210bec4b08034e130cd5db4a426fe2f7820e (patch) | |
tree | 40ff47126af5d2f894ba9927b88e593467dede7d | |
parent | 314ca843e81c2e26e83d58391e313503e0f30ebd (diff) | |
download | nextcloud-server-de81210bec4b08034e130cd5db4a426fe2f7820e.tar.gz nextcloud-server-de81210bec4b08034e130cd5db4a426fe2f7820e.zip |
Add another test.
-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 16a03f5645a..92a96a14772 100644 --- a/tests/lib/tags.php +++ b/tests/lib/tags.php @@ -94,7 +94,7 @@ class Test_Tags extends PHPUnit_Framework_TestCase { $this->assertEquals(0, count($tagMgr->getTags())); $this->assertTrue($tagMgr->isEmpty()); - $tagMgr->add('Tag'); + $this->assertNotEquals(false, $tagMgr->add('Tag')); $this->assertFalse($tagMgr->isEmpty()); } |