Skip to content

Commit

Permalink
chore(api): fix attach plate move tests (#16177)
Browse files Browse the repository at this point in the history
Looks like I forgot this in #16174
  • Loading branch information
sfoster1 authored Sep 3, 2024
1 parent 3cba451 commit 631eeff
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def subject(

@pytest.mark.ot3_only
@pytest.mark.parametrize("mount_type", [MountType.LEFT, MountType.RIGHT])
async def test_calibration_move_to_location_implementatio_for_attach_instrument(
async def test_calibration_move_to_location_implementation_for_attach_instrument(
decoy: Decoy,
subject: MoveToMaintenancePositionImplementation,
state_view: StateView,
Expand Down Expand Up @@ -79,7 +79,7 @@ async def test_calibration_move_to_location_implementatio_for_attach_instrument(

@pytest.mark.ot3_only
@pytest.mark.parametrize("mount_type", [MountType.LEFT, MountType.RIGHT])
async def test_calibration_move_to_location_implementatio_for_attach_plate(
async def test_calibration_move_to_location_implementation_for_attach_plate(
decoy: Decoy,
subject: MoveToMaintenancePositionImplementation,
state_view: StateView,
Expand Down Expand Up @@ -113,11 +113,18 @@ async def test_calibration_move_to_location_implementatio_for_attach_plate(
await ot3_hardware_api.move_axes(
position={
Axis.Z_L: 90,
}
),
await ot3_hardware_api.disengage_axes(
[Axis.Z_L],
),
await ot3_hardware_api.move_axes(
position={
Axis.Z_R: 105,
}
),
await ot3_hardware_api.disengage_axes(
[Axis.Z_L, Axis.Z_R],
[Axis.Z_R],
),
)

Expand Down

0 comments on commit 631eeff

Please sign in to comment.