Skip to content

Commit

Permalink
Fix command-line test
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebittinger committed Apr 12, 2019
1 parent 4a0b175 commit 211242e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tests/test_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ def test_main(self):
with open(query_fp, "w") as f:
f.write(query_fasta)
main([
query_fp, self.dir, "--type_strain_fasta", REF_FP])
query_fp,
"--output_dir", self.dir,
"--type_strain_fasta", REF_FP])

with(open(os.path.join(self.dir, "unassigner_output.tsv"))) as f:
header_line = next(f)
Expand Down
1 change: 0 additions & 1 deletion tests/test_unassignment_probability.py

This file was deleted.

0 comments on commit 211242e

Please sign in to comment.