summaryrefslogtreecommitdiff
path: root/Zend/tests/jump08.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/jump08.phpt')
-rw-r--r--Zend/tests/jump08.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/jump08.phpt b/Zend/tests/jump08.phpt
index 25a211c8c4..e2f7cd4bc6 100644
--- a/Zend/tests/jump08.phpt
+++ b/Zend/tests/jump08.phpt
@@ -4,7 +4,7 @@ jump 08: goto into loop (forward)
<?php
goto L1;
while (0) {
- L1: echo "bug\n";
+ L1: echo "bug\n";
}
?>
--EXPECTF--