Skip to content

Commit 23d5867

Browse files
committed
updated
1 parent 9d9d293 commit 23d5867

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ services:
44
- docker
55
env:
66
matrix:
7-
- HHVM_VERSION=4.25.1
8-
- HHVM_VERSION=4.26.1
9-
- HHVM_VERSION=4.27.1
10-
- HHVM_VERSION=4.28.2
11-
- HHVM_VERSION=4.29.0
12-
- HHVM_VERSION=4.30.0
13-
- HHVM_VERSION=4.31.0
14-
- HHVM_VERSION=latest
7+
- HHVM_VERSION=4.29.0
8+
- HHVM_VERSION=4.30.0
9+
- HHVM_VERSION=4.31.0
10+
- HHVM_VERSION=4.32.0
11+
- HHVM_VERSION=4.33.0
12+
- HHVM_VERSION=4.34.0
13+
- HHVM_VERSION=4.35.0
14+
- HHVM_VERSION=4.36.0
15+
- HHVM_VERSION=latest
1516
install:
1617
- docker pull hhvm/hhvm:$HHVM_VERSION
1718
script:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
}
1919
],
2020
"require": {
21-
"hhvm": "^4.25",
21+
"hhvm": "^4.29",
2222
"hhvm/hsl": "^4.0",
23-
"hhvm/hsl-experimental": "^4.25",
23+
"hhvm/hsl-experimental": "^4.37",
2424
"hhvm/hhvm-autoload": "^2.0.10",
2525
"facebook/hack-http-request-response-interfaces": "^0.2",
2626
"nazg/http-server-request-handler": "^0.3.0"

tests/MockAsyncRequestHandler.hack

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ final class MockAsyncRequestHandler implements AsyncRequestHandlerInterface {
1313
IO\WriteHandle $handle,
1414
ServerRequestInterface $_request
1515
): Awaitable<ResponseInterface> {
16-
await $handle->writeAsync(json_encode(dict[]));
17-
if($handle is IO\NonDisposableHandle) {
16+
if($handle is IO\CloseableHandle) {
1817
await $handle->closeAsync();
1918
}
2019
return new Response($handle, StatusCode::OK);

0 commit comments

Comments
 (0)