Add another test.

This commit is contained in:
Thomas Tanghus 2013-09-19 13:55:45 +02:00
parent 1bbeb12e2e
commit 8fab9eef28
1 changed files with 1 additions and 1 deletions

View File

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