From a9270a42a9a300aed71547c6d77de71b2424b2ba Mon Sep 17 00:00:00 2001 From: caila-marashaj Date: Wed, 7 Aug 2024 15:47:32 -0400 Subject: [PATCH] test math fix --- api/tests/opentrons/hardware_control/test_ot3_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/tests/opentrons/hardware_control/test_ot3_api.py b/api/tests/opentrons/hardware_control/test_ot3_api.py index 62eba79f1ff..20a8f090374 100644 --- a/api/tests/opentrons/hardware_control/test_ot3_api.py +++ b/api/tests/opentrons/hardware_control/test_ot3_api.py @@ -958,7 +958,7 @@ async def test_liquid_probe_plunger_moves( mount_travel_distance = mount_speed * mount_travel_time max_z_distance -= mount_travel_distance - move_mount_z_time = (max_z_distance + probe_safe_reset_mm) / mount_speed + move_mount_z_time = (max_z_distance + probe_pass_z_offset_mm) / mount_speed p_travel_required_for_z = move_mount_z_time * config.plunger_speed