diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-05-21 15:13:01 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-05-21 18:43:13 +0200 |
commit | b18fde3b52a40b8d1acc6d7d82efdf764590edbf (patch) | |
tree | 1bbee73324441d580456412b60942d95f9e1937e /application | |
parent | 764ec006839636a5dc7bd6bf65760037570a16c0 (diff) |
Clarify variable usage in \c\tools->test
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application')
-rw-r--r-- | application/controllers/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/controllers/tools.php b/application/controllers/tools.php index a444e6024..f2fa1f97c 100644 --- a/application/controllers/tools.php +++ b/application/controllers/tools.php @@ -88,7 +88,7 @@ class Tools extends MY_Controller { $test->{$method->name}(); $test->cleanup(); } catch (\Exception $e) { - echo "not ok - uncaught exception in $testcase->$method->name\n"; + echo "not ok - uncaught exception in {$testcase}->{$method->name}\n"; _actual_exception_handler($e); $exitcode = 255; } |