We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4f7eb commit 50e1ddbCopy full SHA for 50e1ddb
.travis.yml
@@ -5,6 +5,7 @@ services:
5
env:
6
matrix:
7
- HHVM_VERSION=4.62.0
8
+ - HHVM_VERSION=4.64.0
9
- HHVM_VERSION=latest
10
install:
11
- docker pull hhvm/hhvm:$HHVM_VERSION
tests/AsyncRequestHandleExecutorTest.hack
@@ -13,7 +13,7 @@ final class AsyncRequestHandleExecutorTest extends HackTest {
13
public async function testShouldReturnNullStackEmitter(): Awaitable<void> {
14
$stack = new EmitterStack();
15
$stack->push(new OverrideSapiEmitter());
16
- list($readHandle, $writeHandle) = IO\pipe_nd();
+ list($readHandle, $writeHandle) = IO\pipe();
17
$executor = new AsyncRequestHandleExecutor(
18
$readHandle,
19
$writeHandle,
0 commit comments