Skip to content

Commit

Permalink
Merge pull request #1150 from nolar/fix-403-retry
Browse files Browse the repository at this point in the history
Fix the 403 retry error in tests
  • Loading branch information
nolar authored Dec 13, 2024
2 parents c158bae + 49387eb commit 4499b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/apis/test_error_retries.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def test_regular_errors_escalate_without_retries(
assert_logs([], prohibited=["attempt", "escalating", "retry"])


@pytest.mark.parametrize('status', [400, 403, 404, 499, 666, 999])
@pytest.mark.parametrize('status', [400, 404, 499, 666, 999])
async def test_client_errors_escalate_without_retries(
caplog, assert_logs, settings, logger, resp_mocker, aresponses, hostname, status):
caplog.set_level(0)
Expand Down

0 comments on commit 4499b72

Please sign in to comment.