Skip to content

Commit

Permalink
No need to be so strict for such low value
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin-b committed Feb 10, 2024
1 parent 83a413e commit 3ef03dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/aws_signature_v4/test_aws4auth_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ async def test_aws_auth_header_performances_without_spaces_in_value(
)
end = time.perf_counter_ns()

assert end - start < 10_000_000
assert end - start < 30_000_000


@pytest.mark.parametrize(
Expand Down
2 changes: 1 addition & 1 deletion tests/aws_signature_v4/test_aws4auth_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def test_aws_auth_header_performances_without_spaces_in_value(
)
end = time.perf_counter_ns()

assert end - start < 10_000_000
assert end - start < 30_000_000


@pytest.mark.parametrize(
Expand Down

0 comments on commit 3ef03dc

Please sign in to comment.