diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-03 06:02:40 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-03 06:02:40 +0000 |
commit | 8a4ab78bfb0bbf49e0a1db1e9e0576712bb04bc2 (patch) | |
tree | fdf7a83e7524936982740cfcbdd0957ce01ba3e9 /core/tests | |
parent | fa9dda4c01a1ebb1af34e51fb36c2b3f27eb8d6e (diff) |
Oops, injecting the function name caused an extra call in the call
stack. The test passed, but the actual code failed. Fixed now.
Diffstat (limited to 'core/tests')
-rw-r--r-- | core/tests/Theme_Test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tests/Theme_Test.php b/core/tests/Theme_Test.php index b8f702f3..5b568b19 100644 --- a/core/tests/Theme_Test.php +++ b/core/tests/Theme_Test.php @@ -29,6 +29,6 @@ class Theme_Test extends Unit_Test_Case { } public function _fake_debug_backtrace() { - return array(array('file' => THEMEPATH . "fake_theme/views/some_file.html.php")); + return array(array(), array('file' => THEMEPATH . "fake_theme/views/some_file.html.php")); } }
\ No newline at end of file |