Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oiadebayo committed Jan 6, 2025
1 parent 18e84b3 commit 6cc2274
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integrations/aws/tests/utils/test_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ async def test_resync_custom_kind(
):
assert isinstance(result, list)
for resource in result:
assert resource[CustomProperties.KIND.value] == "AWS::CloudFormation::Stack"
assert (
resource[CustomProperties.KIND.value]
== "AWS::CloudFormation::Stack"
)
assert resource[CustomProperties.ACCOUNT_ID.value] == mock_account_id
assert resource[CustomProperties.REGION.value] == "us-west-2"
assert "Properties" in resource
Expand Down

0 comments on commit 6cc2274

Please sign in to comment.