Skip to content

Commit bfcff38

Browse files
committed
Fix run_pty() doesn't return and test hangs
1 parent 9d03730 commit bfcff38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_sqlite3/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def test_nothing_to_complete(self):
239239

240240
def test_completion_order(self):
241241
script = "from sqlite3.__main__ import main; main()"
242-
input = b"S\t\n.quit\n"
242+
input = b"S\t;\n.quit\n"
243243
output = run_pty(script, input, env={"NO_COLOR": "1"})
244244
savepoint_idx = output.find(b"SAVEPOINT")
245245
select_idx = output.find(b"SELECT")

0 commit comments

Comments
 (0)