Skip to content

Commit

Permalink
fix: Deploy integration tests for toml tags as a list (#2965)
Browse files Browse the repository at this point in the history
  • Loading branch information
hnnasit authored Jun 17, 2021
1 parent 2592135 commit 3c54e78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/deploy/test_deploy_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ def test_deploy_with_invalid_config(self, template_file, config_file):
@parameterized.expand([("aws-serverless-function.yaml", "samconfig-tags-list.toml")])
def test_deploy_with_valid_config_tags_list(self, template_file, config_file):
stack_name = self._method_to_stack_name(self.id())
self.stack_names.append(stack_name)
self.stacks.append({"name": stack_name})
template_path = self.test_data_path.joinpath(template_file)
config_path = self.test_data_path.joinpath(config_file)

Expand All @@ -718,7 +718,7 @@ def test_deploy_with_valid_config_tags_list(self, template_file, config_file):
@parameterized.expand([("aws-serverless-function.yaml", "samconfig-tags-string.toml")])
def test_deploy_with_valid_config_tags_string(self, template_file, config_file):
stack_name = self._method_to_stack_name(self.id())
self.stack_names.append(stack_name)
self.stacks.append({"name": stack_name})
template_path = self.test_data_path.joinpath(template_file)
config_path = self.test_data_path.joinpath(config_file)

Expand Down

0 comments on commit 3c54e78

Please sign in to comment.