Skip to content

Commit

Permalink
fixes broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuailevy committed Nov 20, 2024
1 parent 6799dbd commit e7dff8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions freyja/tests/test_deconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ def test_build_mix_and_depth_plus_reindex(self):
varFn = 'freyja/data/mixture.tsv'
depthFn = 'freyja/data/mixture.depth'
covcut = 10
mix, depths, cov = build_mix_and_depth_arrays(varFn, depthFn, muts,
covcut)
autoadapt = False
mix, depths, cov, adapt = build_mix_and_depth_arrays(varFn, depthFn,
muts, covcut,
autoadapt)
# just making sure the files we've read in are ready for use
self.assertTrue(ptypes.is_float_dtype(mix))
self.assertTrue(ptypes.is_float_dtype(depths))
Expand Down

0 comments on commit e7dff8c

Please sign in to comment.