Skip to content

Commit

Permalink
Merge pull request #377 from ajkavanagh/fix-integration-test-due-to-374
Browse files Browse the repository at this point in the history
Fix the integration test due to PR 374
  • Loading branch information
stgraber authored Oct 10, 2019
2 parents 8a3f58d + 8b5ba45 commit f79a8fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration/test_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ def stdout_handler(msg):
)

self.assertEqual(0, result.exit_code)
self.assertEqual(test_msg, result.stdout)
# if a handler is supplied then there is no stdout in result
self.assertEqual('', result.stdout)
self.assertEqual('', result.stderr)
self.assertEqual(stdout_msgs, [test_msg])

Expand Down

0 comments on commit f79a8fe

Please sign in to comment.