Skip to content

Commit a1ade99

Browse files
authored
Merge pull request #4 from nazg-hack/feature/patch-fot-hhvm4.35
changed codes
2 parents 060ef35 + 7c29d88 commit a1ade99

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ services:
44
- docker
55
env:
66
matrix:
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
137
- HHVM_VERSION=4.35.0
148
- HHVM_VERSION=4.36.0
9+
- HHVM_VERSION=4.38.0
10+
- HHVM_VERSION=4.39.0
11+
- HHVM_VERSION=4.40.0
12+
- HHVM_VERSION=4.41.0
1513
- HHVM_VERSION=latest
1614
install:
1715
- docker pull hhvm/hhvm:$HHVM_VERSION

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"hhvm": "^4.29",
21+
"hhvm": "^4.35",
2222
"hhvm/hsl": "^4.0",
2323
"hhvm/hsl-experimental": "^4.37",
2424
"hhvm/hhvm-autoload": "^2.0.10",
@@ -29,7 +29,7 @@
2929
"hhvm/hacktest": "^2.0.0",
3030
"facebook/fbexpect": "^2.7.3",
3131
"hhvm/hhast": "^4.0.0",
32-
"ytake/hungrr": "^0.7"
32+
"ytake/hungrr": "^0.8"
3333
},
3434
"autoload": {
3535
"psr-4": {

tests/AsyncRequestHandleExecutorTest.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ final class AsyncRequestHandleExecutorTest extends HackTest {
2828
expect($result)->toBeNull();
2929
$out = ob_get_contents();
3030
ob_end_clean();
31-
expect($out)->toBeSame('{}');
31+
expect($out)->toBeSame('');
3232
}
3333
}

tests/MockRequestHandler.hack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ final class MockRequestHandler implements RequestHandlerInterface {
1313
IO\WriteHandle $handle,
1414
ServerRequestInterface $_request
1515
): ResponseInterface {
16-
$handle->rawWriteBlocking(json_encode([]));
16+
$handle->rawWriteBlocking(json_encode(dict[]));
1717
return new Response($handle, StatusCode::OK);
1818
}
1919
}

0 commit comments

Comments
 (0)