Skip to content

Commit 49387eb

Browse files
committed
Fix the 403 retry error
Follow-up for #1131 Signed-off-by: Sergey Vasilyev <[email protected]>
1 parent c158bae commit 49387eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/apis/test_error_retries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ async def test_regular_errors_escalate_without_retries(
3333
assert_logs([], prohibited=["attempt", "escalating", "retry"])
3434

3535

36-
@pytest.mark.parametrize('status', [400, 403, 404, 499, 666, 999])
36+
@pytest.mark.parametrize('status', [400, 404, 499, 666, 999])
3737
async def test_client_errors_escalate_without_retries(
3838
caplog, assert_logs, settings, logger, resp_mocker, aresponses, hostname, status):
3939
caplog.set_level(0)

0 commit comments

Comments
 (0)