diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-12-21 12:09:16 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-12-21 12:09:16 -0800 |
commit | 0c3fd9579fa5008cb51ab7080f2d861aa3fbfd6a (patch) | |
tree | f0d63d10a3088154c38efb6f4d61fce41377f471 /modules/gallery_unit_test | |
parent | 7d8f76fa7a303447f7835b803c05739b3e8e48c3 (diff) |
Stop using Kohana::lang.
Diffstat (limited to 'modules/gallery_unit_test')
-rw-r--r-- | modules/gallery_unit_test/views/kohana_unit_test_cli.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery_unit_test/views/kohana_unit_test_cli.php b/modules/gallery_unit_test/views/kohana_unit_test_cli.php index 352671eb..3203ee44 100644 --- a/modules/gallery_unit_test/views/kohana_unit_test_cli.php +++ b/modules/gallery_unit_test/views/kohana_unit_test_cli.php @@ -44,7 +44,7 @@ foreach ($results as $class => $methods) { red_start(), color_end()); echo " ", $result->getMessage(), "\n"; echo " ", $result->getFile(); - echo " ", "(" . Kohana::lang("unit_test.line") . " " . $result->getLine(), ")\n"; + echo " ", "(line " . $result->getLine(), ")\n"; if ($result->getDebug() !== null) { echo " ", "(", gettype($result->getDebug()), ") ", var_export($result->getDebug(), true), "\n"; |