Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Nov 28, 2023
1 parent 538aa79 commit 91d7e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pythonFiles/tests/test_shell_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def test_decoration_success():

ps1.hooks.failure_flag = False
result = str(ps1)
assert result == "\x1b]633;D;00\x07\x1b]633;A\x07>>>\x1b]633;B\x07\x1b]633;C\x07"
assert result == "\x1b]633;D;00\x07\x1b]633;A\x07>>> \x1b]633;B\x07\x1b]633;C\x07"


def test_decoration_failure():
Expand All @@ -20,7 +20,7 @@ def test_decoration_failure():
ps1.hooks.failure_flag = True
result = str(ps1)

assert result == "\x1b]633;D;10\x07\x1b]633;A\x07>>>\x1b]633;B\x07\x1b]633;C\x07"
assert result == "\x1b]633;D;10\x07\x1b]633;A\x07>>> \x1b]633;B\x07\x1b]633;C\x07"


def test_displayhook_call():
Expand Down

0 comments on commit 91d7e55

Please sign in to comment.