Skip to content

Commit f2052a3

Browse files
committed
fix notice
1 parent 2408f16 commit f2052a3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/330-poll-pipe.phpt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Check poll of a pipe works
44
<?php
55
$fd = popen(PHP_BINARY . " ". __DIR__ . "/fixtures/proc.php", "w");
66
stream_set_blocking($fd, 0);
7-
fwrite($fd, 'test');
87

98
$loop = uv_loop_new();
109
$poll = uv_poll_init($loop, $fd);

tests/fixtures/proc.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<?php
22

3-
echo $argv[1];
3+
echo 'hello';
4+

0 commit comments

Comments
 (0)