Skip to content

Commit

Permalink
Test fix. Interchange will have ipaddress raise ValueError instead of…
Browse files Browse the repository at this point in the history
… ZMQError if ip_address is bad
  • Loading branch information
yadudoc committed Nov 25, 2024
1 parent ce7a984 commit dcf9782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/tests/test_htex/test_zmq_binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_interchange_binding_with_non_ipv4_address(cert_dir: Optional[str]):
def test_interchange_binding_bad_address(cert_dir: Optional[str]):
"""Confirm that we raise a ZMQError when a bad address is supplied"""
address = "550.0.0.0"
with pytest.raises(zmq.error.ZMQError):
with pytest.raises(ValueError):
make_interchange(interchange_address=address, cert_dir=cert_dir)


Expand Down

0 comments on commit dcf9782

Please sign in to comment.