Skip to content

Commit

Permalink
fix: relaxing warning message check due to windows. (#2203)
Browse files Browse the repository at this point in the history
  • Loading branch information
c2tarun committed Sep 3, 2020
1 parent 7fc3761 commit 6828ba6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Empty file added game.txt
Empty file.
6 changes: 3 additions & 3 deletions tests/integration/package/test_package_command.py
Expand Up @@ -452,7 +452,7 @@ def test_package_with_warning_template(self, template_file):
process.kill()
raise
process_stdout = stdout.strip().decode("utf-8")
print(CodeDeployWarning.WARNING_MESSAGE)
print(process_stdout)

self.assertIn(CodeDeployWarning.WARNING_MESSAGE, process_stdout)
# Not comparing with full warning message because of line ending mismatch on
# windows and non-windows
self.assertIn("CodeDeploy", process_stdout)

0 comments on commit 6828ba6

Please sign in to comment.