summaryrefslogtreecommitdiff
path: root/tests/lang/004.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/004.phpt')
-rw-r--r--tests/lang/004.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lang/004.phpt b/tests/lang/004.phpt
index be8ebf4155..9ca3492cde 100644
--- a/tests/lang/004.phpt
+++ b/tests/lang/004.phpt
@@ -2,12 +2,12 @@
Simple If/Else Test
--FILE--
<?php
-$a=1;
+$a=1;
if($a==0) {
echo "bad";
} else {
echo "good";
}
-?>
+?>
--EXPECT--
good