From 84af6c4a5fc2de6e0d6bda17b3fb5bcba86e5e12 Mon Sep 17 00:00:00 2001 From: KAUSHAL KISHORE <59508627+kaushalacts@users.noreply.github.com> Date: Sun, 23 Mar 2025 03:31:52 +0530 Subject: [PATCH 1/2] Update app.py --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From e84e343e0aebd52cb60c949c12ee3d66f1202744 Mon Sep 17 00:00:00 2001 From: KAUSHAL KISHORE <59508627+kaushalacts@users.noreply.github.com> Date: Sun, 23 Mar 2025 03:32:10 +0530 Subject: [PATCH 2/2] Update test_app.py --- test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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