Skip to content

Commit 6372515

Browse files
committed
Typo in mock_worker_variant_insertion leads to a wrong counts file path.
1 parent d39c58e commit 6372515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/helpers/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def mock_worker_variant_insertion(client, db, data_provider, score_set, scores_c
144144
score_df = csv_data_to_df(score_file)
145145

146146
if counts_csv_path is not None:
147-
with open(scores_csv_path, "rb") as counts_file:
147+
with open(counts_csv_path, "rb") as counts_file:
148148
counts_df = csv_data_to_df(counts_file)
149149
else:
150150
counts_df = None

0 commit comments

Comments
 (0)