Skip to content

Commit

Permalink
fixed failing test for cli runner. No version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSteenwyk committed Sep 27, 2021
1 parent d9ff60c commit f84c465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_cli_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@ def test_pk_il(self):
def test_pk_last_common_ancestor_subtree(self):
cmd = "pk_last_common_ancestor_subtree -h"
exit_status = os.system(cmd)
assert exit_status == 256
assert exit_status == 0

@pytest.mark.slow
def test_pk_lca_subtree(self):
cmd = "pk_lca_subtree -h"
exit_status = os.system(cmd)
assert exit_status == 256
assert exit_status == 0

@pytest.mark.slow
def test_pk_lb_score(self):
Expand Down

0 comments on commit f84c465

Please sign in to comment.