From 5fe1c92250017110430c7c2153cfd8776e4c7064 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Tue, 28 Jun 2016 12:02:51 +0200 Subject: [PATCH] Improved test assertion in wsgi tests Thanks Berker Peksag for the suggestion. --- tests/wsgi/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py index 03ac7ee706..99076f56bd 100644 --- a/tests/wsgi/tests.py +++ b/tests/wsgi/tests.py @@ -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!" ])