diff --git a/integrations/aws/tests/utils/test_resources.py b/integrations/aws/tests/utils/test_resources.py index 1f9ad09859..fb8587efbf 100644 --- a/integrations/aws/tests/utils/test_resources.py +++ b/integrations/aws/tests/utils/test_resources.py @@ -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