Skip to content

Commit be12189

Browse files
committed
fix bad args in test
1 parent 2b8abca commit be12189

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/tests/fibers/signal-async.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pcntl_signal(SIGUSR1, function (): void {
1717
$fiber = new Fiber(function (): void {
1818
echo "Fiber start\n";
1919
posix_kill(posix_getpid(), SIGUSR1);
20-
time_nanosleep(1);
20+
time_nanosleep(1, 0);
2121
echo "Fiber end\n";
2222
});
2323

0 commit comments

Comments
 (0)