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

Commit

Permalink
Support hsl-experimental < 4.52
Browse files Browse the repository at this point in the history
Separate release coming soon that requires hsl-experimental 4.52
  • Loading branch information
fredemmott committed May 5, 2020
1 parent 8ef10db commit 78d0775
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ language: generic
services: docker
env:
- HHVM_VERSION=4.41-latest
- HHVM_VERSION=latest
- HHVM_VERSION=nightly
- HHVM_VERSION=4.51-latest
install:
- docker pull hhvm/hhvm:$HHVM_VERSION
script:
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<int> {
return $this->write($data);
): Awaitable<void> {
$this->write($data);
}

public function isEndOfFile(): bool {
Expand Down

0 comments on commit 78d0775

Please sign in to comment.