Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BjornFJohansson committed Feb 15, 2025
1 parent 9c8cce8 commit b12eaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_module_dseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -1811,7 +1811,7 @@ def test_new():

assert Dseq("ggtctcAAgcTT").get_cutsites(BsaI) == [((7, -4), BsaI)]
assert Dseq("ggtctcAAgcTT").cut(BsaI) == (Dseq("ggtctcAFqjZ"), Dseq("EpiXT"))
assert Dseq("TggtctcAAgcT").get_cutsites(BsaI) == [((8, -4), BsaI)]
assert Dseq("TggtctcAAgcT").get_cutsites(BsaI) == []
assert Dseq("TggtctcAAgcT").cut(BsaI) == (Dseq("TggtctcAFqjZ"), Dseq("EpiX"))
assert Dseq("TTggtctcAAgc").get_cutsites(BsaI) == []
assert Dseq("TTggtctcAAgc").cut(BsaI) == ()
Expand Down

0 comments on commit b12eaf7

Please sign in to comment.