Skip to content

Commit 24f27b4

Browse files
committed
Cleanup
1 parent 7e9e84d commit 24f27b4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/cursorless-engine/src/testUtil/TalonRepl.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ export class TalonRepl {
6666
let tryCount = 0;
6767

6868
while (true) {
69-
// As a hack, we just put `[]` in the REPL, which should cause it to print
70-
// `[]` back to us (we could put any Python value in there; `[]` is just a
71-
// simple one). We keep doing this until we get `[]` back, which means the
69+
// As a hack, we just put `0` in the REPL, which should cause it to print
70+
// `0` back to us (we could put any Python value in there; `0` is just a
71+
// simple one). We keep doing this until we get `0` back, which means the
7272
// REPL is responsive again.
73-
const output = (await this.command("[]")).trim();
73+
const output = (await this.command("0")).trim();
7474

75-
if (output === "[]") {
75+
if (output === "0") {
7676
break;
7777
}
7878

0 commit comments

Comments
 (0)