From 4315ce3b377f91d13df6f1ae9c5cd6f71868ccd4 Mon Sep 17 00:00:00 2001 From: Marcio Cruz de Almeida <67694075+marciocadev@users.noreply.github.com> Date: Sun, 5 Jan 2025 07:53:38 -0300 Subject: [PATCH] fix(sdk): test execution in aws-cdk (#7232) The Pull Request v0.79.13 changed the way the lambdas test ARNs are passed to the TestRunnerClient, unfortunately, it was not noticed that the target awscdk should also be changed. This change allowed the tests to be executed correctly. Closes #7229 ## Checklist - [x] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [x] Description explains motivation and solution - [ ] Tests added (always) - [ ] Docs updated (only required for features) - [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing *By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*. --- packages/winglang/src/commands/test/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/winglang/src/commands/test/test.ts b/packages/winglang/src/commands/test/test.ts index 0a12ecacf3c..f01e5d2ce45 100644 --- a/packages/winglang/src/commands/test/test.ts +++ b/packages/winglang/src/commands/test/test.ts @@ -610,7 +610,7 @@ async function testAwsCdk(synthDir: string, options: TestOptions): Promise