Skip to content

Commit

Permalink
Fix assertion in read test
Browse files Browse the repository at this point in the history
  • Loading branch information
flostadler committed Nov 7, 2024
1 parent 1d4b118 commit b6aa274
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion provider/pkg/resources/cfn_custom_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion provider/pkg/resources/cfn_custom_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ func TestCfnCustomResource_Read(t *testing.T) {
},
{
name: "No State",
expectedError: "CfnCustomResource import not implemented",
expectedError: "CustomResourceEmulator import not implemented",
},
}

Expand Down

0 comments on commit b6aa274

Please sign in to comment.