Skip to content

Commit

Permalink
Fix breaking shell command test case
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashb committed May 7, 2024
1 parent 8870247 commit 2efe972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_shell_command_raises_no_domain_exception_when_no_domain_is_found(self):
result = runner.invoke(app, args, catch_exceptions=False)
assert result.exit_code == 1
assert isinstance(result.exception, SystemExit)
assert result.output == "Aborted.\n"
assert "Aborted" in result.output

def test_shell_command_with_traverse_option(self):
change_working_directory_to("test7")
Expand Down

0 comments on commit 2efe972

Please sign in to comment.