File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import sys
22
3- original_ps1 = ">>>"
3+ original_ps1 = ">>> "
44
55
66class repl_hooks :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def test_decoration_success():
1010
1111 ps1 .hooks .failure_flag = False
1212 result = str (ps1 )
13- assert result == "\x1b ]633;D;00\x07 \x1b ]633;A\x07 >>>\x1b ]633;B\x07 \x1b ]633;C\x07 "
13+ assert result == "\x1b ]633;D;00\x07 \x1b ]633;A\x07 >>> \x1b ]633;B\x07 \x1b ]633;C\x07 "
1414
1515
1616def test_decoration_failure ():
@@ -20,7 +20,7 @@ def test_decoration_failure():
2020 ps1 .hooks .failure_flag = True
2121 result = str (ps1 )
2222
23- assert result == "\x1b ]633;D;10\x07 \x1b ]633;A\x07 >>>\x1b ]633;B\x07 \x1b ]633;C\x07 "
23+ assert result == "\x1b ]633;D;10\x07 \x1b ]633;A\x07 >>> \x1b ]633;B\x07 \x1b ]633;C\x07 "
2424
2525
2626def test_displayhook_call ():
You can’t perform that action at this time.
0 commit comments