Skip to content

Commit

Permalink
# pylint: disable=protected-access
Browse files Browse the repository at this point in the history
  • Loading branch information
cl0ete committed Oct 31, 2024
1 parent 638335a commit 3d91943
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion waypoint/tests/services/test_nats_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ async def test_nats_events_processor_subscribe_error(
mock_nats_client.pull_subscribe.side_effect = exception

with pytest.raises(exception):
await processor._subscribe("group_id", "wallet_id", "proofs", "done", 300)
await processor._subscribe( # pylint: disable=protected-access
"group_id", "wallet_id", "proofs", "done", 300
)


@pytest.mark.anyio
Expand Down

0 comments on commit 3d91943

Please sign in to comment.