File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ services:
44- docker
55env :
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
1614install :
1715- docker pull hhvm/hhvm:$HHVM_VERSION
Original file line number Diff line number Diff line change 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" ,
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" : {
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments