summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2013-03-21 06:40:17 +0100
committerChristian Weiske <cweiske@cweiske.de>2013-03-21 06:40:17 +0100
commit3e2d817fc7fecf6b97c5989ca75a52414fbdf0af (patch)
tree86a2f7fb096c30ca58d1b41f62b26e5a262813ba
parent72269aa1d6790b5e9d0643fa348b9c1df6a8cfc7 (diff)
downloadsemanticscuttle-3e2d817fc7fecf6b97c5989ca75a52414fbdf0af.tar.gz
semanticscuttle-3e2d817fc7fecf6b97c5989ca75a52414fbdf0af.tar.bz2
fix tag::normalize test
-rw-r--r--tests/TagTest.php2
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);
}
}