Skip to content

Commit

Permalink
Minor fixes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zwets committed Dec 30, 2024
1 parent b7b1599 commit 1b16d1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_parsing_validity.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def test_amrfinderplus():
assert result.input_protein_length == 391

# missing data in report
assert result.reference_gene_length == None
assert result.input_gene_length == None
assert result.reference_gene_length is None
assert result.input_gene_length is None
assert result.coverage_depth is None
assert result.coverage_ratio is None
assert result.resistance_mechanism is None
Expand Down Expand Up @@ -428,7 +428,7 @@ def test_resfinder():
assert result.amino_acid_mutation_interpretation is None

else:
assert result.genetic_variation_type == False # just to stop
assert result.genetic_variation_type is False # just to stop

# Check that we saw all
assert seen_genes == 4
Expand Down

0 comments on commit 1b16d1c

Please sign in to comment.