From 3f645d1b28152d3ae901298e6e88bad220f4b3fd Mon Sep 17 00:00:00 2001 From: David Miller <45697098+dlm6693@users.noreply.github.com> Date: Thu, 9 Nov 2023 18:44:07 -0500 Subject: [PATCH] fix presign test cases (#3052) --- tests/functional/test_s3.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/functional/test_s3.py b/tests/functional/test_s3.py index b62b0b6b78..ae8a7371fb 100644 --- a/tests/functional/test_s3.py +++ b/tests/functional/test_s3.py @@ -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" @@ -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" @@ -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"