Skip to content

Commit 5e024a0

Browse files
committed
fix test volume issue
1 parent 208b89b commit 5e024a0

File tree

1 file changed

+4
-4
lines changed
  • hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3

1 file changed

+4
-4
lines changed

hardware-testing/hardware_testing/production_qc/ninety_six_assembly_qc_ot3/test_droplets.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -205,20 +205,20 @@ async def _find_reservoir_pos() -> None:
205205
for trial in range(2):
206206
ui.print_header("JOG to 96-Tip RACK")
207207
if trial == 0:
208-
tip_rack = str(pipette) + "ul"
208+
tip_rack = pipette
209209
test_volume: int = pipette
210210
else:
211-
tip_rack = "50ul"
211+
tip_rack = 50
212212
test_volume = 1 if pipette == 200 else 5
213213
if not api.is_simulator:
214-
ui.get_user_ready(f"ADD 96 tip-rack-{tip_rack} to slot #{TIP_RACK_96_SLOT}")
214+
ui.get_user_ready(f"ADD 96 tip-rack-{tip_rack}ul to slot #{TIP_RACK_96_SLOT}")
215215
await helpers_ot3.move_to_arched_ot3(
216216
api, OT3Mount.LEFT, tip_rack_96_a1_nominal + Point(z=30)
217217
)
218218
await helpers_ot3.jog_mount_ot3(api, OT3Mount.LEFT)
219219
print("picking up tips")
220220
await api.pick_up_tip(
221-
OT3Mount.LEFT, helpers_ot3.get_default_tip_length(pipette)
221+
OT3Mount.LEFT, helpers_ot3.get_default_tip_length(tip_rack)
222222
)
223223
await api.home_z(OT3Mount.LEFT)
224224
if reservoir_a1_actual is None:

0 commit comments

Comments
 (0)