Skip to content

Commit

Permalink
fixed unit test to ensure helix max offset is sufficiently large
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Nov 30, 2022
1 parent e133772 commit 03d54ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/scadnano_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5472,7 +5472,7 @@ class TestCircularStrandEdits(unittest.TestCase):
'''

def setUp(self) -> None:
helices = [sc.Helix(max_offset=10) for _ in range(3)]
helices = [sc.Helix(max_offset=50) for _ in range(3)]
self.design = sc.Design(helices=helices, strands=[])
self.design.draw_strand(0, 0).move(10).cross(1).move(-10)
self.design.draw_strand(0, 15).move(5).cross(1).move(-10).cross(0).move(5)
Expand Down

0 comments on commit 03d54ae

Please sign in to comment.