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