Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frankharkins committed Dec 18, 2024
1 parent c3ba41a commit b5f033f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def mock_input(self, *args, **_kwargs):
self.mock_print(args[0])
return self.inputs.pop(0)

def mock_print(self, *args):
def mock_print(self, *args, **_kwargs):
self.output += " ".join(args) + "\n"


Expand Down

0 comments on commit b5f033f

Please sign in to comment.