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

Commit

Permalink
Revert readAsync -> readAllAsync in InteractivityTest
Browse files Browse the repository at this point in the history
This was a valid case :)
  • Loading branch information
fredemmott committed Dec 14, 2020
1 parent 14a6f8b commit b8fa489
Showing 1 changed file with 1 addition and 1 deletion.
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->readAllAsync())->toEqual('> ');
expect(await $out->readAsync())->toEqual('> ');
await $in->writeAllAsync("exit 123\n");
$in->close();
};
Expand Down

0 comments on commit b8fa489

Please sign in to comment.