Skip to content

Commit

Permalink
pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Sep 5, 2024
1 parent a760687 commit 598a87a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_jobcounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def test_bwa(self, ifs):
print(' '.join([str(i) for i in ci]))
_p = sp.run(ci, capture_output=True, text=True)
assert _p.returncode == 0
assert parseSpOut(_p) == 143
assert parseSpOut(_p) == 152
def test_bwa2(self, ifs):
ci = [
"DNAmapping",
Expand All @@ -493,7 +493,7 @@ def test_bwa2(self, ifs):
print(' '.join([str(i) for i in ci]))
_p = sp.run(ci, capture_output=True, text=True)
assert _p.returncode == 0
assert parseSpOut(_p) == 143
assert parseSpOut(_p) == 152
def test_se(self, ifs):
ci = [
"DNAmapping",
Expand Down

0 comments on commit 598a87a

Please sign in to comment.