summaryrefslogtreecommitdiff
path: root/Zend/tests/jump13.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/jump13.phpt')
-rw-r--r--Zend/tests/jump13.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/jump13.phpt b/Zend/tests/jump13.phpt
index 2d57f4aabb..c281d8c93b 100644
--- a/Zend/tests/jump13.phpt
+++ b/Zend/tests/jump13.phpt
@@ -13,12 +13,12 @@ try {
}
catch(Exception $e) {
c: print 3;
- goto d;
- }
+ goto d;
+ }
}
catch(Exception $e) {
d: print 4;
- goto e;
+ goto e;
}
?>
--EXPECT--