Skip to content

Commit 5fc8b9b

Browse files
author
Chiara Rasi
committed
Removed unused variable
1 parent 76bc991 commit 5fc8b9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/server/test_server_responses.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def test_match_hgnc_symbol_patient(
415415
assert validate_response({"results": "fakey_results"}) == 422
416416
assert database["matches"].find_one() is None
417417

418-
data = _run_match_request(mock_app, MATCH_ENDPOINT, query_patient, ok_token)
418+
_run_match_request(mock_app, MATCH_ENDPOINT, query_patient, ok_token)
419419

420420
match = database["matches"].find_one()
421421
_assert_valid_match_structure(match)
@@ -434,7 +434,7 @@ def test_match_ensembl_patient(
434434

435435
assert database["matches"].find_one() is None
436436

437-
data = _run_match_request(mock_app, MATCH_ENDPOINT, query_patient, ok_token)
437+
_run_match_request(mock_app, MATCH_ENDPOINT, query_patient, ok_token)
438438

439439
match = database["matches"].find_one()
440440
_assert_valid_match_structure(match)

0 commit comments

Comments
 (0)