diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-02-09 15:52:38 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-02-09 15:52:38 -0800 |
commit | 8763e475adc7bb26ed9705c9d61a1db2b20e60c4 (patch) | |
tree | e5368e84f2513698eaf40e97d77936874bd1db78 /modules/gallery_unit_test/libraries | |
parent | 09d3f483234943c65cfc717cf1eb969d1d04ba73 (diff) |
Move diff::compare to be test::diff
Diffstat (limited to 'modules/gallery_unit_test/libraries')
-rw-r--r-- | modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php b/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php index 509b4125..545af0fe 100644 --- a/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php +++ b/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php @@ -24,7 +24,7 @@ class Gallery_Unit_Test_Case extends Unit_Test_Case { sprintf("Expected (%s) %s but received (%s) %s\n Diff: %s", gettype($expected), var_export($expected, true), gettype($actual), var_export($actual, true), - diff::compare(var_export($expected, true), var_export($actual, true))), + test::diff(var_export($expected, true), var_export($actual, true))), $debug); } return $this; |