Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sage-wright committed Oct 17, 2023
1 parent f4faa3f commit bd3bd16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_LIMS.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ def test_get_lineage_bovis(self):
LIMS1 = LIMS(logger=self.LOGGER, input_json=JSON, output_prefix="test")
lineage = LIMS1.get_lineage()

assert lineage == "DNA of non-BCG Mycobacterium bovis detected"
assert lineage == "DNA of Mycobacterium bovis (not BCG) detected"

def test_get_lineage_la1(self):
JSON = os.path.join(self.data_dir + '/lineages', "la1.json")

LIMS1 = LIMS(logger=self.LOGGER, input_json=JSON, output_prefix="test")
lineage = LIMS1.get_lineage()

assert lineage == "DNA of M. tuberculosis complex detected (M. bovis)"
assert lineage == "DNA of Mycobacterium bovis (not BCG) detected"

def test_get_lineage_lineage(self):
JSON = os.path.join(self.data_dir + '/lineages', "lineage.json")
Expand Down

0 comments on commit bd3bd16

Please sign in to comment.