Skip to content
This repository has been archived by the owner on Oct 1, 2023. It is now read-only.

Commit

Permalink
Require hsl-experimental 4.52
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed May 5, 2020
1 parent 78d0775 commit 86e28ea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ sudo: required
language: generic
services: docker
env:
- HHVM_VERSION=4.41-latest
- HHVM_VERSION=4.51-latest
- HHVM_VERSION=4.52-latest
- HHVM_VERSION=latest
- HHVM_VERSION=nightly
install:
- docker pull hhvm/hhvm:$HHVM_VERSION
script:
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"hhvm": "^4.41",
"hhvm/hsl": "^4.0",
"hhvm/type-assert": "^3.2",
"hhvm/hsl-experimental": "^4.50"
"hhvm/hsl-experimental": "^4.52"
},
"require-dev": {
"hhvm/hhast": "^4.0.2",
Expand Down
4 changes: 2 additions & 2 deletions src/TestLib/StringOutput.hack
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ final class StringOutput implements IO\WriteHandle, IO\UserspaceHandle {
public async function writeAsync(
string $data,
?num $_timeout_mixed = null,
): Awaitable<void> {
$this->write($data);
): Awaitable<int> {
return $this->write($data);
}

public function isEndOfFile(): bool {
Expand Down

0 comments on commit 86e28ea

Please sign in to comment.