Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cloutierMat committed Oct 9, 2024
1 parent 578f48c commit dd111ab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 6 additions & 2 deletions tests/test_apigateway/test_apigateway_custom_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@


@mock_aws
@pytest.mark.skipif(not settings.TEST_DECORATOR_MODE, reason="Can't access the id manager in proxy mode")
@pytest.mark.skipif(
not settings.TEST_DECORATOR_MODE, reason="Can't access the id manager in proxy mode"
)
def test_custom_id_rest_api(set_custom_id, account_id):
region_name = "us-west-2"
rest_api_name = "my-api"
Expand Down Expand Up @@ -108,7 +110,9 @@ def test_custom_id_rest_api(set_custom_id, account_id):


@mock_aws
@pytest.mark.skipif(not settings.TEST_DECORATOR_MODE, reason="Can't access the id manager in proxy mode")
@pytest.mark.skipif(
not settings.TEST_DECORATOR_MODE, reason="Can't access the id manager in proxy mode"
)
def test_custom_id_api_key(account_id, set_custom_id):
region_name = "us-west-2"
api_key_value = "01234567890123456789"
Expand Down
4 changes: 3 additions & 1 deletion tests/test_secretsmanager/test_secretsmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1954,7 +1954,9 @@ def test_update_secret_version_stage_dont_specify_current_stage(secret_arn=None)


@mock_aws
@pytest.mark.skipif(not settings.TEST_DECORATOR_MODE, reason="Can't access the id manager in proxy mode")
@pytest.mark.skipif(
not settings.TEST_DECORATOR_MODE, reason="Can't access the id manager in proxy mode"
)
def test_create_secret_custom_id(account_id, set_custom_id):
secret_suffix = "randomSuffix"
secret_name = "secret-name"
Expand Down

0 comments on commit dd111ab

Please sign in to comment.