summaryrefslogtreecommitdiff
path: root/Zend/tests/try/try_catch_finally_006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/try/try_catch_finally_006.phpt')
-rw-r--r--Zend/tests/try/try_catch_finally_006.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/try/try_catch_finally_006.phpt b/Zend/tests/try/try_catch_finally_006.phpt
index dab6af6a58..66db8cd97c 100644
--- a/Zend/tests/try/try_catch_finally_006.phpt
+++ b/Zend/tests/try/try_catch_finally_006.phpt
@@ -11,7 +11,7 @@ function foo($ex = NULL) {
} finally {
var_dump("finally1");
if ($ex) throw $ex;
- }
+ }
} catch (Exception $e) {
var_dump("catched");
if ($ex) return "return1";