We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021dccf commit 2ca583aCopy full SHA for 2ca583a
tests/test_api.py
@@ -38,6 +38,7 @@ def test_secrets_manager_fips_endpoint(self, mock_boto3_client):
38
mock_boto3_client.assert_called_with(
39
"secretsmanager",
40
endpoint_url="https://secretsmanager-fips.us-gov-east-1.amazonaws.com",
41
+ region_name="us-gov-east-1",
42
)
43
self.assertEqual(api_key, "test-api-key")
44
@@ -56,7 +57,8 @@ def test_secrets_manager_different_region(self, mock_boto3_client):
56
57
58
59
- endpoint_url="https://secretsmanager.us-west-1.amazonaws.com",
60
+ endpoint_url=None,
61
+ region_name="us-west-1",
62
63
64
0 commit comments