diff options
Diffstat (limited to 'Zend/tests/try/catch_finally_001.phpt')
-rw-r--r-- | Zend/tests/try/catch_finally_001.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/try/catch_finally_001.phpt b/Zend/tests/try/catch_finally_001.phpt index db0605fc05..0fa1404bcb 100644 --- a/Zend/tests/try/catch_finally_001.phpt +++ b/Zend/tests/try/catch_finally_001.phpt @@ -9,7 +9,7 @@ function foo ($throw = FALSE) { throw new Exception("ex"); } } catch (Exception $e) { - echo "catch\n"; + echo "catch\n"; } finally { echo "finally\n"; } |