From b6aa274466adcccebabc0c43eb6efae4b3539ba1 Mon Sep 17 00:00:00 2001 From: Florian Stadler Date: Thu, 7 Nov 2024 18:54:42 +0100 Subject: [PATCH] Fix assertion in read test --- provider/pkg/resources/cfn_custom_resource.go | 2 +- provider/pkg/resources/cfn_custom_resource_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/provider/pkg/resources/cfn_custom_resource.go b/provider/pkg/resources/cfn_custom_resource.go index e35607a75c..f5f4d54a1b 100644 --- a/provider/pkg/resources/cfn_custom_resource.go +++ b/provider/pkg/resources/cfn_custom_resource.go @@ -96,7 +96,7 @@ func (s CfnCustomResourceState) ToPropertyMap() resource.PropertyMap { func CfnCustomResourceSpec() pschema.ResourceSpec { return pschema.ResourceSpec{ ObjectTypeSpec: pschema.ObjectTypeSpec{ - Description: "TODO", + Description: "TODO: pulumi/pulumi-cdk#109", Properties: map[string]pschema.PropertySpec{ "physicalResourceId": { Description: "The name or unique identifier that corresponds to the `PhysicalResourceId` included in the Custom Resource response. If no `PhysicalResourceId` is provided in the response, a random ID will be generated.", diff --git a/provider/pkg/resources/cfn_custom_resource_test.go b/provider/pkg/resources/cfn_custom_resource_test.go index a45b680f8b..e3b48ef179 100644 --- a/provider/pkg/resources/cfn_custom_resource_test.go +++ b/provider/pkg/resources/cfn_custom_resource_test.go @@ -1089,7 +1089,7 @@ func TestCfnCustomResource_Read(t *testing.T) { }, { name: "No State", - expectedError: "CfnCustomResource import not implemented", + expectedError: "CustomResourceEmulator import not implemented", }, }