From 4df57d54dffd428a08a169b5a4d99c1cf9b9b0a7 Mon Sep 17 00:00:00 2001 From: omri zaher Date: Sun, 3 Aug 2025 18:32:51 +0300 Subject: [PATCH] Refactor health check test to assert for 200 status code and remove debug print statement --- tests/auth/test_login.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/auth/test_login.py b/tests/auth/test_login.py index 38c8caedf..d31a14720 100644 --- a/tests/auth/test_login.py +++ b/tests/auth/test_login.py @@ -13,6 +13,4 @@ class TestLogin: def test_health_check(self): """Test basic health check""" response = requests.get(f"{base_url}") - # assert response.status_code == 400 - print("**************",response.status_code) assert response.status_code == 200