Skip to content

Commit

Permalink
[#1345] Extend the list of accepted exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
fivitti committed Jul 3, 2024
1 parent c5f6090 commit 45442c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system/tests/test_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_grpc_ping(kea_service: Kea, bind9_service: Bind9):
client = StorkAgentGRPCClient.for_service(kea_service)
client.fetch_certs_from(bind9_service)

pytest.raises(StreamTerminatedError, client.ping)
pytest.raises((ConnectionResetError, StreamTerminatedError), client.ping)


def test_grpc_get_state(kea_service: Kea, bind9_service: Bind9):
Expand Down

0 comments on commit 45442c9

Please sign in to comment.