diff options
author | Christian Weiske <cweiske@cweiske.de> | 2013-03-21 06:40:17 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2013-03-21 06:40:17 +0100 |
commit | 3e2d817fc7fecf6b97c5989ca75a52414fbdf0af (patch) | |
tree | 86a2f7fb096c30ca58d1b41f62b26e5a262813ba | |
parent | 72269aa1d6790b5e9d0643fa348b9c1df6a8cfc7 (diff) | |
download | semanticscuttle-3e2d817fc7fecf6b97c5989ca75a52414fbdf0af.tar.gz semanticscuttle-3e2d817fc7fecf6b97c5989ca75a52414fbdf0af.tar.bz2 |
fix tag::normalize test
-rw-r--r-- | tests/TagTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/TagTest.php b/tests/TagTest.php index bda5a29..bac8f28 100644 --- a/tests/TagTest.php +++ b/tests/TagTest.php @@ -92,7 +92,7 @@ class TagTest extends TestBase $tags = $this->ts->normalize( array('foo', '', 'bar', 'baz') ); - $this->assertEquals(array('foo', 'bar', 'baz'), $tags); + $this->assertEquals(array(0 => 'foo', 2 => 'bar', 3 => 'baz'), $tags); } } |