Skip to content

Commit

Permalink
Revert to using the standard tab escape for readability.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Jan 14, 2024
1 parent 5da7a5d commit 9a13dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def test_pex_repl_tab_complete(
pexpect.spawn(empty_pex, dimensions=(24, 80), logfile=log)
) as process:
process.expect_exact(b">>>", timeout=pexpect_timeout)
process.send(b"impo\x09")
process.send(b"impo\t")
process.expect_exact(b"rt", timeout=pexpect_timeout)
process.sendline(b" subprocess")
process.expect_exact(b">>>", timeout=pexpect_timeout)
Expand Down

0 comments on commit 9a13dbb

Please sign in to comment.