Skip to content

Commit

Permalink
Rename merge_contigs into find_maximum_overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Dec 24, 2024
1 parent 6beb4d9 commit 2b77b1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
import micall.utils.merge_contigs as merge_contigs
from micall.utils.find_maximum_overlap import find_maximum_overlap


@pytest.mark.parametrize(
Expand All @@ -21,7 +21,7 @@
)
def test_maximum_overlap_cases(left, right, expected):
if isinstance(expected, int):
assert merge_contigs.find_maximum_overlap(left, right) == expected
assert find_maximum_overlap(left, right) == expected
else:
with pytest.raises(expected):
merge_contigs.find_maximum_overlap(left, right)
find_maximum_overlap(left, right)
File renamed without changes.

0 comments on commit 2b77b1a

Please sign in to comment.