From cdde4d62d52b784e14484164c2022a7a42d9a86a Mon Sep 17 00:00:00 2001 From: Wilton Wang Date: Mon, 23 Aug 2021 17:19:06 -0700 Subject: [PATCH] Fixed Stack Name --- tests/integration/deploy/test_deploy_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/deploy/test_deploy_command.py b/tests/integration/deploy/test_deploy_command.py index aece4f47b2..b2968e1d94 100644 --- a/tests/integration/deploy/test_deploy_command.py +++ b/tests/integration/deploy/test_deploy_command.py @@ -639,7 +639,7 @@ def test_deploy_guided_image_specify(self, template_file): else: self.fail("Companion stack was created. This should not happen with specifying image repos.") - self.stacks.append(SAM_CLI_STACK_NAME) + self.stacks.append({"name": SAM_CLI_STACK_NAME}) # Remove samconfig.toml os.remove(self.test_data_path.joinpath(DEFAULT_CONFIG_FILE_NAME))