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

Commit

Permalink
Use not-yet-released version of HSL IO
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Dec 14, 2020
1 parent b8fa489 commit a275f2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ ubuntu, macos ]
hhvm:
- '4.60'
- '4.76'
- latest
- nightly
runs-on: ${{matrix.os}}-latest
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
}
},
"require": {
"hhvm": "^4.60",
"hhvm": "^4.76",
"hhvm/hsl": "^4.0",
"hhvm/type-assert": "^4.0",
"hhvm/hsl-experimental": "^4.58.0rc1",
"hhvm/hsl-io": "^0.2.0"
"hhvm/hsl-io": "^0.3.0"
},
"require-dev": {
"facebook/fbexpect": "^2.6.1",
Expand Down
2 changes: 1 addition & 1 deletion tests/InteractivityTest.hack
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ final class InteractivityTest extends TestCase {
concurrent {
$ret = await $cli->mainAsync();
await async {
expect(await $out->readAsync())->toEqual('> ');
expect(await $out->readAllowPartialSuccessAsync())->toEqual('> ');
await $in->writeAllAsync("exit 123\n");
$in->close();
};
Expand Down

0 comments on commit a275f2f

Please sign in to comment.