- fix test: command-like options

This commit is contained in:
denihs
2023-03-31 14:23:09 -04:00
parent 8f4467cdda
commit 1e3cfb447f

View File

@@ -417,14 +417,14 @@ selftest.define("command-like options", async function () {
await run.matchErr("Unreleased");
await run.expectExit(1);
} else {
run.read(release.current.getDisplayName() + "\n");
await run.read(release.current.getDisplayName() + "\n");
run.waitSecs(5);
await run.expectEnd();
await run.expectExit(0);
}
run = s.run("--arch");
run.read(archinfo.host() + "\n");
await run.read(archinfo.host() + "\n");
run.waitSecs(5);
await run.expectEnd();
await run.expectExit(0);