fix tag::normalize test

This commit is contained in:
Christian Weiske 2013-03-21 06:40:17 +01:00
parent 72269aa1d6
commit 3e2d817fc7

View File

@ -92,7 +92,7 @@ class TagTest extends TestBase
$tags = $this->ts->normalize( $tags = $this->ts->normalize(
array('foo', '', 'bar', 'baz') array('foo', '', 'bar', 'baz')
); );
$this->assertEquals(array('foo', 'bar', 'baz'), $tags); $this->assertEquals(array(0 => 'foo', 2 => 'bar', 3 => 'baz'), $tags);
} }
} }