From c6aae60909b91ea475df38f47139a5f290cedc78 Mon Sep 17 00:00:00 2001 From: Joseph Bartley Date: Tue, 7 Nov 2023 16:27:40 -0600 Subject: [PATCH] fix: update commented template test (#27870) Fixes the commented out default test to make it easier for new users to get started. Closes #27869. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .../aws-cdk/lib/init-templates/app/go/%name%_test.template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk/lib/init-templates/app/go/%name%_test.template.go b/packages/aws-cdk/lib/init-templates/app/go/%name%_test.template.go index 00ea26012b3d1..57cd5720e5273 100644 --- a/packages/aws-cdk/lib/init-templates/app/go/%name%_test.template.go +++ b/packages/aws-cdk/lib/init-templates/app/go/%name%_test.template.go @@ -18,7 +18,7 @@ package main // stack := New%name.PascalCased%Stack(app, "MyStack", nil) // // THEN -// template := assertions.Template_FromStack(stack) +// template := assertions.Template_FromStack(stack, nil) // template.HasResourceProperties(jsii.String("AWS::SQS::Queue"), map[string]interface{}{ // "VisibilityTimeout": 300,