Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Oct 2, 2023
1 parent cbf34eb commit c45dd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/aio/test_aio_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_retries_param(retry_num, expected_class, expected_param):
session = client.session
assert isinstance(session, expected_class)
if expected_param is not NOT_SET:
assert getattr(session, f'_RetryingClientSession__retry_number') == expected_param
assert getattr(session, '_RetryingClientSession__retry_number') == expected_param


@pytest.mark.parametrize(
Expand Down

0 comments on commit c45dd14

Please sign in to comment.