Improved test assertion in wsgi tests

Thanks Berker Peksag for the suggestion.
This commit is contained in:
Claude Paroz 2016-06-28 12:02:51 +02:00
parent b0acb1e73e
commit 5fe1c92250
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class WSGITest(SimpleTestCase):
self.assertEqual(
set(response_data["headers"]),
{('Content-Length', '12'), ('Content-Type', 'text/html; charset=utf-8')})
self.assertTrue(bytes(response) in [
self.assertIn(bytes(response), [
b"Content-Length: 12\r\nContent-Type: text/html; charset=utf-8\r\n\r\nHello World!",
b"Content-Type: text/html; charset=utf-8\r\nContent-Length: 12\r\n\r\nHello World!"
])