Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit b67c616

Browse files
committed
make mock args consistent with actual functions
1 parent 15a3de8 commit b67c616

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,15 @@ async def create_tables(self, sql_file):
5959
"""Mimic create_tables."""
6060
pass
6161

62-
async def insert_variants(self, dataset_id, variants, len_samples):
62+
async def insert_variants(self, dataset_id, variants, min_ac):
6363
"""Mimic insert_variants."""
6464
pass
6565

6666
async def load_metadata(self, vcf, metafile, datafile):
6767
"""Mimic load_metadata."""
6868
pass
6969

70-
async def load_datafile(self, vcf, datafile, datasetId, min_ac=1):
70+
async def load_datafile(self, vcf, datafile, datasetId, n=1000, min_ac=1):
7171
"""Mimic load_datafile."""
7272
return ["datasetId", "variants"]
7373

0 commit comments

Comments
 (0)