Skip to content

Commit

Permalink
fix issue id'd by ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
kjmeagher committed Jul 2, 2024
1 parent 283794d commit ed43e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_mz.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def test_parse_args() -> None:
with patch("sys.argv", ["multizone", "--list"]), contextlib.redirect_stdout(None):
with pytest.raises(SystemExit) as pytest_wrapped_e:
multizone.parse_args()
assert pytest_wrapped_e.type == SystemExit
assert pytest_wrapped_e.type is SystemExit

iargs = [
"multizone",
Expand Down

0 comments on commit ed43e5a

Please sign in to comment.