Fix bug in parser and fix unit test

This commit is contained in:
Adam Yoblick 2024-07-24 00:02:17 -05:00
parent e3bf7a9665
commit bf4ce2b832
2 changed files with 6 additions and 6 deletions

View file

@ -180,7 +180,7 @@ def test_address_required(cli):
def test_missing_target(cli):
with pytest.raises(ValueError) as ex:
cli(["--listen", "8888", "-m", ""])
cli(["--listen", "8888"])
assert "missing target" in str(ex.value)