diff --git a/test_app.py b/test_app.py index 20673e9..0f6b939 100644 --- a/test_app.py +++ b/test_app.py @@ -15,6 +15,6 @@ def client(app): def test_home(client): response = client.get('/') assert response.status_code == 200 - expected_text = 'Hey Guys ! This is my python App12' + expected_text = 'Hey Guys ! This is my python App12. This has the feature of being of auto PR review.' print(response.data) assert expected_text.encode() == response.data