Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading