]> granicus.if.org Git - php/commitdiff
Fix test
authorMarcus Boerger <helly@php.net>
Tue, 18 May 2004 21:27:08 +0000 (21:27 +0000)
committerMarcus Boerger <helly@php.net>
Tue, 18 May 2004 21:27:08 +0000 (21:27 +0000)
tests/strings/002.phpt

index c3fcf6db5e6c2713e910d70690d52e2529d0bd55..7b95a256450b4898c6933b0249a32ee605edecb8 100644 (file)
@@ -1,13 +1,12 @@
 --TEST--
 Formatted print functions
---POST--
---GET--
 --FILE--
 <?php 
 error_reporting(0);
 
 $fp = fopen("php://stdout", "w") or die("Arrggsgg!!");
-$x = fprintf($fp, "fprintf test 1:%.5s\n", "abcdefghij");
+$x = fprintf($fp, "fprintf test 1:%.5s", "abcdefghij");
+echo "\n";
 var_dump($x);
 
 printf("printf test 1:%s\n", "simple string");