diff --git a/webapp/tests.py b/webapp/tests.py index 5d8e558..0c1ca83 100644 --- a/webapp/tests.py +++ b/webapp/tests.py @@ -8,7 +8,7 @@ class AppTestCase(unittest.TestCase): def test_root_text(self): tester = app.test_client(self) response = tester.get('/') - assert 'Hello world!' in response.data + assert 'Hello world! Hi!' in response.data if __name__ == '__main__': unittest.main()