Skip to content

Commit cec2f33

Browse files
committed
chore: re-add boto config fixture custom client test
1 parent a8350ae commit cec2f33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tests/functional/test_utilities_parameters.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -174,13 +174,13 @@ def test_dynamodb_provider_get_sdk_options(mock_name, mock_value, config):
174174
stubber.deactivate()
175175

176176

177-
def test_dynamodb_provider_get_with_custom_client(mock_name, mock_value):
177+
def test_dynamodb_provider_get_with_custom_client(mock_name, mock_value, config):
178178
"""
179179
Test DynamoDBProvider.get() with SDK options
180180
"""
181181

182182
table_name = "TEST_TABLE"
183-
client = boto3.resource("dynamodb")
183+
client = boto3.resource("dynamodb", config=config)
184184
# Create a new provider
185185
provider = parameters.DynamoDBProvider(table_name, boto3_client=client)
186186

0 commit comments

Comments
 (0)