From 2a7b665d52bd4bd9da2e7af7e86cd1e6c95cd08b Mon Sep 17 00:00:00 2001 From: kudlaty Date: Thu, 22 Mar 2018 18:43:07 +0100 Subject: [PATCH] feature/kjug bad test --- sources/test_webapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/test_webapp.py b/sources/test_webapp.py index 41b67b4..36a8dbe 100644 --- a/sources/test_webapp.py +++ b/sources/test_webapp.py @@ -8,7 +8,7 @@ class BasicTestCase(unittest.TestCase): tester = app.test_client(self) response = tester.get('/', content_type='html/text') self.assertEqual(response.status_code, 200) - self.assertEqual(response.data, b'Hello, World!') + self.assertEqual(response.data, b'Hello, World!kdsjflsd') if __name__ == '__main__':