diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-08-03 21:41:38 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-08-03 21:41:38 -0600 |
commit | 9104fa7b55d4613792208956bbd0098bd89b033c (patch) | |
tree | 4d0af426fcbaf3a169a9b94fab02de7e3c9cf259 /modules/gallery/tests | |
parent | cc2711dce99972f60bf590fe858b2eaa9d0d2397 (diff) | |
parent | 7ad0808a117fd1db4e94da8d7763ccca1d69350a (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/gallery/tests')
-rw-r--r-- | modules/gallery/tests/Item_Model_Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/tests/Item_Model_Test.php b/modules/gallery/tests/Item_Model_Test.php index c2773097..0940d076 100644 --- a/modules/gallery/tests/Item_Model_Test.php +++ b/modules/gallery/tests/Item_Model_Test.php @@ -147,7 +147,7 @@ class Item_Model_Test extends Unit_Test_Case { $item->save(); $item->title = "NEW_VALUE"; - $this->assert_same("ORIGINAL_VALUE", $item->original("title")); + $this->assert_same("ORIGINAL_VALUE", $item->original()->title); $this->assert_same("NEW_VALUE", $item->title); } } |