From ecded4daf3eb0cfddbbe67840407a0768811f0e4 Mon Sep 17 00:00:00 2001 From: yangzhangs Date: Tue, 23 Jul 2019 09:58:37 +0800 Subject: [PATCH] tiny --- webapp/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()