From d3fc1a03e6bad17a1d5dca508c0ae9afbe92d39b Mon Sep 17 00:00:00 2001 From: Kim Wendt Date: Mon, 13 Jan 2025 12:48:27 -0800 Subject: [PATCH] Remove parameter in publish method for code assertion function. --- .../test/integ-assets/eventapi-grant-assertion/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ-assets/eventapi-grant-assertion/index.js b/packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ-assets/eventapi-grant-assertion/index.js index 954a7ba1180b8..fee9e16dda1d2 100644 --- a/packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ-assets/eventapi-grant-assertion/index.js +++ b/packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ-assets/eventapi-grant-assertion/index.js @@ -192,7 +192,7 @@ exports.handler = async function(event) { const channel = event.channel; if (pubSubAction === 'publish') { - const res = await publish(channel, false); + const res = await publish(channel); console.log(res); return res; } else if (pubSubAction === 'subscribe') {