From b8fa489a2297df950e1d8004cf8012f0bead3b67 Mon Sep 17 00:00:00 2001 From: Fred Emmott Date: Mon, 14 Dec 2020 13:33:01 -0600 Subject: [PATCH] Revert readAsync -> readAllAsync in InteractivityTest This was a valid case :) --- tests/InteractivityTest.hack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/InteractivityTest.hack b/tests/InteractivityTest.hack index af2d192..e4cd325 100644 --- a/tests/InteractivityTest.hack +++ b/tests/InteractivityTest.hack @@ -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(); };