From 299415dddd959821e009efec16944928301db1a4 Mon Sep 17 00:00:00 2001 From: kaushalacts Date: Mon, 13 Jul 2026 22:55:35 +0530 Subject: [PATCH] auto PR review --- test_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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