File tree 1 file changed +5
-5
lines changed
packages/cursorless-engine/src/testUtil 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,13 +66,13 @@ export class TalonRepl {
66
66
let tryCount = 0 ;
67
67
68
68
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
72
72
// REPL is responsive again.
73
- const output = ( await this . command ( "[] " ) ) . trim ( ) ;
73
+ const output = ( await this . command ( "0 " ) ) . trim ( ) ;
74
74
75
- if ( output === "[] " ) {
75
+ if ( output === "0 " ) {
76
76
break ;
77
77
}
78
78
You can’t perform that action at this time.
0 commit comments