diff --git a/app.py b/app.py index 1f80652..e3ca38c 100644 --- a/app.py +++ b/app.py @@ -6,7 +6,7 @@ def create_app(): app = Flask(__name__) @app.route('/') def home(): - return 'Hey Guys ! This is my python App' + return 'Hey Guys ! This is my python App1' return app diff --git a/test_app.py b/test_app.py index 89b4ec0..c2f4341 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 App' + expected_text = 'Hey Guys ! This is my python App1' print(response.data) assert expected_text.encode() == response.data