Skip to content

Commit

Permalink
fix taxon parameter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Nov 18, 2021
1 parent 842437b commit dfc9a66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ def test_genus_failiing(parameters, tmpdir):
(['--species', '']) # empty
]
)
def test_genus_failiing(parameters, tmpdir):
# test genus prefix arguments
def test_species_failiing(parameters, tmpdir):
# test species prefix arguments
proc = run(['bin/bakta', '--db', 'test/db', '--output', tmpdir] + parameters + ['test/data/NC_002127.1.fna'])
assert proc.returncode != 0

Expand All @@ -251,8 +251,8 @@ def test_genus_failiing(parameters, tmpdir):
(['--strain', '']) # empty
]
)
def test_genus_failiing(parameters, tmpdir):
# test genus prefix arguments
def test_strain_failiing(parameters, tmpdir):
# test strain prefix arguments
proc = run(['bin/bakta', '--db', 'test/db', '--output', tmpdir] + parameters + ['test/data/NC_002127.1.fna'])
assert proc.returncode != 0

Expand Down

0 comments on commit dfc9a66

Please sign in to comment.