Skip to content

Commit

Permalink
fix presign test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlm committed Nov 9, 2023
1 parent 159e408 commit 4c6440e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/functional/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -2970,7 +2970,7 @@ def _s3_addressing_test_cases():
region="us-west-2",
bucket=accesspoint_arn,
key="key",
s3_config={"adressing_style": "auto"},
s3_config={"addressing_style": "auto"},
expected_url=(
"https://myendpoint-123456789012.s3-accesspoint."
"us-west-2.amazonaws.com/key"
Expand All @@ -2980,7 +2980,7 @@ def _s3_addressing_test_cases():
region="us-west-2",
bucket=accesspoint_arn,
key="key",
s3_config={"adressing_style": "virtual"},
s3_config={"addressing_style": "virtual"},
expected_url=(
"https://myendpoint-123456789012.s3-accesspoint."
"us-west-2.amazonaws.com/key"
Expand All @@ -2990,7 +2990,7 @@ def _s3_addressing_test_cases():
region="us-west-2",
bucket=accesspoint_arn,
key="key",
s3_config={"adressing_style": "path"},
s3_config={"addressing_style": "path"},
expected_url=(
"https://myendpoint-123456789012.s3-accesspoint."
"us-west-2.amazonaws.com/key"
Expand Down

0 comments on commit 4c6440e

Please sign in to comment.