diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-03 01:07:02 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-03 01:07:02 -0700 |
commit | 41e3773417a78949f44f463b28c41d55413c850b (patch) | |
tree | 46dc5306afcb08fd570a8a4c0019283d4622c327 /modules/gallery/tests | |
parent | 640d84aba46f4dcd813d7c9ade320f665c1958c0 (diff) |
fix the expected return value of album controller
Diffstat (limited to 'modules/gallery/tests')
-rw-r--r-- | modules/gallery/tests/Albums_Controller_Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/tests/Albums_Controller_Test.php b/modules/gallery/tests/Albums_Controller_Test.php index 7674e85f..d65946c7 100644 --- a/modules/gallery/tests/Albums_Controller_Test.php +++ b/modules/gallery/tests/Albums_Controller_Test.php @@ -52,7 +52,7 @@ class Albums_Controller_Test extends Unit_Test_Case { ob_end_clean(); $this->assert_equal( - json_encode(array("result" => "success", "location" => "http://./index.php/test")), + json_encode(array("result" => "success")), $results); $this->assert_equal("new title", $this->_album->title); $this->assert_equal("new description", $this->_album->description); |