Skip to content

Commit

Permalink
fix si test
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Jan 9, 2024
1 parent dad8480 commit a090bae
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pythonFiles/tests/test_shell_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ def test_decoration_success():

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


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

assert result == "\x1b]633;D;1\x07\x1b]633;A\x07>>> \x1b]633;B\x07\x1b]633;C\x07"
assert (
result
== "\x1b]633;D;1\x07\x1b]633;A\x07>>> \x1b]633;B\x07\x1b]633;C\x07\x1b]633;E;None\x07"
)


def test_displayhook_call():
Expand Down

0 comments on commit a090bae

Please sign in to comment.