File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ disallow_subclassing_any = True
55disallow_untyped_calls = True
66disallow_untyped_decorators = False
77disallow_untyped_defs = True
8- follow_imports = ' normal '
8+ follow_imports = silent
99ignore_missing_imports = True
1010no_implicit_optional = True
1111strict_optional = True
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def assert_vws_failure(
4141
4242def assert_valid_date_header (response : Response ) -> None :
4343 """
44- Assert that a response includes a `Date` header which is within one minute
44+ Assert that a response includes a `Date` header which is within two minutes
4545 of "now".
4646
4747 Args:
@@ -67,7 +67,7 @@ def assert_valid_date_header(response: Response) -> None:
6767 )
6868 current_date = datetime .datetime .now (tz = gmt )
6969 time_difference = abs (current_date - datetime_from_response )
70- assert time_difference < datetime .timedelta (minutes = 1 )
70+ assert time_difference < datetime .timedelta (minutes = 2 )
7171
7272
7373def assert_valid_transaction_id (response : Response ) -> None :
You can’t perform that action at this time.
0 commit comments