Skip to content

Commit

Permalink
tests: change retries from 3 to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
deedy5 committed May 30, 2024
1 parent 096c270 commit 1d96aa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pyreqwest_impersonate import Client


def retry(max_retries=3, delay=1):
def retry(max_retries=5, delay=1):
def decorator(func):
def wrapper(*args, **kwargs):
for attempt in range(max_retries):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_defs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pyreqwest_impersonate as pri


def retry(max_retries=3, delay=1):
def retry(max_retries=5, delay=1):
def decorator(func):
def wrapper(*args, **kwargs):
for attempt in range(max_retries):
Expand Down

0 comments on commit 1d96aa7

Please sign in to comment.