From e02ea3fd3f8f58931e54f4d232a721dc89f91c7a Mon Sep 17 00:00:00 2001 From: kudlaty Date: Thu, 22 Mar 2018 18:51:09 +0100 Subject: [PATCH] feature/kjug artifacts added --- 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 36a8dbe..41b67b4 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!kdsjflsd') + self.assertEqual(response.data, b'Hello, World!') if __name__ == '__main__':