Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleon95 committed Jan 16, 2025
1 parent 0d0dcf4 commit 4963bd5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/tests/opentrons/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ def maximal_liquid_class_def() -> LiquidClassSchemaV1:
touchTip=TouchTipProperties(
enable=True,
params=LiquidClassTouchTipParams(
zOffset=-1, mmToEdge=0.5, speed=30
zOffset=-1, mmToEdge=0.75, speed=30
),
),
delay=DelayProperties(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,8 @@ def test_retract_after_aspiration(
mock_instrument_core.touch_tip(
location=Location(Point(x=4, y=4, z=4), labware=None),
well_core=source_well,
radius=1, # Update this to use mmToEdge once implemented
radius=1,
mm_from_edge=0.5,
z_offset=-1,
speed=30,
),
Expand Down Expand Up @@ -599,6 +600,7 @@ def test_retract_after_dispense_with_blowout_in_source(
location=Location(Point(12, 24, 36), labware=None),
well_core=dest_well,
radius=1,
mm_from_edge=0.75,
z_offset=-1,
speed=30,
),
Expand All @@ -623,6 +625,7 @@ def test_retract_after_dispense_with_blowout_in_source(
location=Location(Point(10, 20, 30), labware=None),
well_core=source_well,
radius=1,
mm_from_edge=0.75,
z_offset=-1,
speed=30,
),
Expand Down Expand Up @@ -711,6 +714,7 @@ def test_retract_after_dispense_with_blowout_in_destination(
location=Location(Point(12, 24, 36), labware=None),
well_core=dest_well,
radius=1,
mm_from_edge=0.75,
z_offset=-1,
speed=30,
),
Expand Down Expand Up @@ -788,6 +792,7 @@ def test_retract_after_dispense_with_blowout_in_trash_well(
location=Location(Point(12, 24, 36), labware=None),
well_core=dest_well,
radius=1,
mm_from_edge=0.75,
z_offset=-1,
speed=30,
),
Expand All @@ -812,6 +817,7 @@ def test_retract_after_dispense_with_blowout_in_trash_well(
location=trash_location,
well_core=trash_well_core,
radius=1,
mm_from_edge=0.75,
z_offset=-1,
speed=30,
),
Expand Down Expand Up @@ -886,6 +892,7 @@ def test_retract_after_dispense_with_blowout_in_disposal_location(
location=Location(Point(12, 24, 36), labware=None),
well_core=dest_well,
radius=1,
mm_from_edge=0.75,
z_offset=-1,
speed=30,
),
Expand Down

0 comments on commit 4963bd5

Please sign in to comment.