Skip to content

Commit

Permalink
lowercase cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Nov 21, 2023
1 parent f7d8617 commit 3d9860e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pythonFiles/tests/test_shell_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

def test_decoration_success():
importlib.reload(pythonrc)
ps1 = pythonrc.PS1()
ps1 = pythonrc.ps1()

ps1.hooks.failure_flag = False
result = str(ps1)
Expand All @@ -15,7 +15,7 @@ def test_decoration_success():

def test_decoration_failure():
importlib.reload(pythonrc)
ps1 = pythonrc.PS1()
ps1 = pythonrc.ps1()

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

def test_displayhook_call():
importlib.reload(pythonrc)
pythonrc.PS1()
pythonrc.ps1()
mock_displayhook = Mock()

hooks = pythonrc.repl_hooks()
Expand All @@ -38,7 +38,7 @@ def test_displayhook_call():

def test_excepthook_call():
importlib.reload(pythonrc)
pythonrc.PS1()
pythonrc.ps1()
mock_excepthook = Mock()

hooks = pythonrc.repl_hooks()
Expand Down

0 comments on commit 3d9860e

Please sign in to comment.