Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfoster1 committed Nov 16, 2023
1 parent a76bd17 commit e0a8d2f
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
Expand Up @@ -1319,7 +1319,7 @@ def test_get_deck_gripper_offsets(ot3_standard_deck_def: DeckDefinitionV3) -> No

assert subject.get_deck_default_gripper_offsets() == LabwareMovementOffsetData(
pickUpOffset=LabwareOffsetVector(x=0, y=0, z=0),
dropOffset=LabwareOffsetVector(x=0, y=0, z=-0.25),
dropOffset=LabwareOffsetVector(x=0, y=0, z=-0.75),
)


Expand Down
4 changes: 2 additions & 2 deletions api/tests/opentrons/protocol_engine/state/test_module_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -1753,14 +1753,14 @@ def test_is_edge_move_unsafe(
lazy_fixture("thermocycler_v2_def"),
LabwareMovementOffsetData(
pickUpOffset=LabwareOffsetVector(x=0, y=0, z=4.6),
dropOffset=LabwareOffsetVector(x=0, y=0, z=4.6),
dropOffset=LabwareOffsetVector(x=0, y=0, z=5.6),
),
),
(
lazy_fixture("heater_shaker_v1_def"),
LabwareMovementOffsetData(
pickUpOffset=LabwareOffsetVector(x=0, y=0, z=0),
dropOffset=LabwareOffsetVector(x=0, y=0, z=0.5),
dropOffset=LabwareOffsetVector(x=0, y=0, z=1.0),
),
),
(
Expand Down

0 comments on commit e0a8d2f

Please sign in to comment.