This commit is contained in:
yangzhangs 2019-07-23 15:09:15 +08:00
parent 945a23e907
commit 58a36a19c3
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class AppTestCase(unittest.TestCase):
def test_root_text(self):
tester = app.test_client(self)
response = tester.get('/')
assert 'Hello world! Hi! I am Here!' in response.data
assert 'Hello world! Hi! I am Here! This is a test!' in response.data
if __name__ == '__main__':
unittest.main()