diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-09-19 13:55:45 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-09-23 23:39:36 +0200 |
commit | 8fab9eef28d2146c2c65f7e7f1aa826216915301 (patch) | |
tree | 41e23aeaf33c6a642452bd305cf0a0d702ae8b69 | |
parent | 1bbeb12e2e8acc47b94c23d6a17332fb45c2a97e (diff) | |
download | nextcloud-server-8fab9eef28d2146c2c65f7e7f1aa826216915301.tar.gz nextcloud-server-8fab9eef28d2146c2c65f7e7f1aa826216915301.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()); } |