From 36b02367dda5b8b36d27fc7bd905dd860927fdac Mon Sep 17 00:00:00 2001 From: Dane Pilcher Date: Fri, 13 Sep 2024 13:29:20 -0600 Subject: [PATCH] test: fix assertion string --- .../cli-integ/tests/cli-integ-tests/cli.integtest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts index d24958b4a6e87..4f62c15d62482 100644 --- a/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts +++ b/packages/@aws-cdk-testing/cli-integ/tests/cli-integ-tests/cli.integtest.ts @@ -2202,7 +2202,7 @@ integTest('hotswap deployment supports AppSync APIs with many functions', expect(response.Stacks?.[0].StackStatus).toEqual('CREATE_COMPLETE'); // assert all 50 functions were hotswapped for (const i of Array(50).keys()) { - expect(deployOutput).toContain(`AWS::AppSync::FunctionConfiguration appsync_function${i} hotswapped!`); + expect(deployOutput).toContain(`AWS::AppSync::FunctionConfiguration 'appsync_function${i}' hotswapped!`); } }), );