]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
fix tag::normalize test
authorChristian Weiske <cweiske@cweiske.de>
Thu, 21 Mar 2013 05:40:17 +0000 (06:40 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 21 Mar 2013 05:40:17 +0000 (06:40 +0100)
tests/TagTest.php

index bda5a29b06899f227b723b4924e897847fea5fe2..bac8f28d01b5cd7f9cfb4a8390c1a98e680c79e0 100644 (file)
@@ -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);
     }
 
 }