From 250b7901ecdbaf92eec3a97df44b371fd53a6db0 Mon Sep 17 00:00:00 2001 From: Chirantan k Date: Wed, 20 May 2026 08:50:36 +0530 Subject: [PATCH] Update test_basic.py --- tests/test_basic.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_basic.py b/tests/test_basic.py index fc41aa7..a66c75b 100644 --- a/tests/test_basic.py +++ b/tests/test_basic.py @@ -280,8 +280,7 @@ def test_download_code_found(): response = client.get("/project/1/download") assert response.status_code == 200 -def test_health_check(): - client = get_client() +def test_health_check(client): response = client.get("/health") assert response.status_code == 200 data = response.get_json()