Skip to content

Commit

Permalink
test: fix assertion string
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilch committed Sep 13, 2024
1 parent 4630ea3 commit 36b0236
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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!`);
}
}),
);
Expand Down

0 comments on commit 36b0236

Please sign in to comment.