Skip to content

Commit 007a076

Browse files
committed
Fix test
1 parent c8e7241 commit 007a076

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/strings/002.phpt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
--TEST--
22
Formatted print functions
3-
--POST--
4-
--GET--
53
--FILE--
64
<?php
75
error_reporting(0);
86

97
$fp = fopen("php://stdout", "w") or die("Arrggsgg!!");
10-
$x = fprintf($fp, "fprintf test 1:%.5s\n", "abcdefghij");
8+
$x = fprintf($fp, "fprintf test 1:%.5s", "abcdefghij");
9+
echo "\n";
1110
var_dump($x);
1211

1312
printf("printf test 1:%s\n", "simple string");

0 commit comments

Comments
 (0)