Skip to content

Commit 159ce70

Browse files
vtjnashKristofferC
authored andcommitted
[REPL] Fix a REPL test failure by removing an erroneous space in test (#44972)
* [REPL] remove erroneous space in test Introduced by #33805 (74f2de1). * Revert "Temporarily move the `REPL` test suite to node 1, to buy us time until we fix the underlying bugs (#44961)" This reverts commit 322fd70. (cherry picked from commit fbec395)
1 parent 89b3c22 commit 159ce70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/REPL/test/repl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ fake_repl(options = REPL.Options(confirm_exit=false,hascolor=true)) do stdin_wri
264264
write(stdin_write, ";")
265265
readuntil(stdout_read, "shell> ")
266266
Base.print_shell_escaped(stdin_write, Base.julia_cmd().exec..., special=Base.shell_special)
267-
write(stdin_write, """ -e "println(\\"HI\\")\" """)
267+
write(stdin_write, """ -e "println(\\"HI\\")\"""")
268268
readuntil(stdout_read, ")\"")
269269
proc_stdout_read, proc_stdout = redirect_stdout()
270270
get_stdout = @async read(proc_stdout_read, String)

0 commit comments

Comments
 (0)