From 6cfdd2211ea96dbe29cd0894023506ac8beb6e80 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Thu, 14 Jan 2010 15:02:52 -0500 Subject: [PATCH] fix broken test --- test/PostFixturesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/PostFixturesTest.php b/test/PostFixturesTest.php index 884d827..93275a2 100644 --- a/test/PostFixturesTest.php +++ b/test/PostFixturesTest.php @@ -19,7 +19,7 @@ class PostFixturesTest extends PHPUnit_Framework_TestCase { array('{}', array()), array('[]', array()), array('["test", "test2"]', array('test', 'test2')), - array('{"one": "test", "two": "test2"}', array('test', 'test2')) + array('{"one": "test", "two": "test2"}', array('one' => 'test', 'two' => 'test2')) ); }