Skip to content

Commit

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

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

0 comments on commit e18a4f4

Please sign in to comment.