fix broken test

This commit is contained in:
John Bintz 2010-01-14 15:02:52 -05:00
parent b8a6ff0768
commit 6cfdd2211e

View File

@ -19,7 +19,7 @@ class PostFixturesTest extends PHPUnit_Framework_TestCase {
array('{}', array()), array('{}', array()),
array('[]', array()), array('[]', array()),
array('["test", "test2"]', array('test', 'test2')), array('["test", "test2"]', array('test', 'test2')),
array('{"one": "test", "two": "test2"}', array('test', 'test2')) array('{"one": "test", "two": "test2"}', array('one' => 'test', 'two' => 'test2'))
); );
} }