summaryrefslogtreecommitdiff
path: root/tests/lang/foreachLoop.017.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/foreachLoop.017.phpt')
-rw-r--r--tests/lang/foreachLoop.017.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/foreachLoop.017.phpt b/tests/lang/foreachLoop.017.phpt
index 987fe3cb27..e791bf0fef 100644
--- a/tests/lang/foreachLoop.017.phpt
+++ b/tests/lang/foreachLoop.017.phpt
@@ -5,7 +5,7 @@ Ensure foreach works with arrays with Binary keys.
$a = array ( "\x90" => 10 );
foreach ($a as $val=>$key) echo $key;
echo "\nDone\n";
-?>
+?>
--EXPECTF--
10
Done