diff options
-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()); } |