Skip to content

Commit c142da1

Browse files
authored
fix(hardware-testing): Change 96ch pipette name in photometric calibration protocols (#13620)
1 parent bb32772 commit c142da1

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

hardware-testing/hardware_testing/protocols/gravimetric_lpc/photometric/photometric_ot3_p1000_multi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(ctx: ProtocolContext) -> None:
2626
]
2727
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
2828
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
29-
pipette = ctx.load_instrument("p1000_multi_gen3", "left")
29+
pipette = ctx.load_instrument("flex_8channel_1000", "left")
3030
for rack in tipracks:
3131
pipette.pick_up_tip(rack["A1"])
3232
pipette.aspirate(10, reservoir["A1"].top())

hardware-testing/hardware_testing/protocols/gravimetric_lpc/photometric/photometric_ot3_p1000_single.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(ctx: ProtocolContext) -> None:
2626
]
2727
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
2828
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
29-
pipette = ctx.load_instrument("p1000_single_gen3", "left")
29+
pipette = ctx.load_instrument("flex_1channel_1000", "left")
3030
for rack in tipracks:
3131
pipette.pick_up_tip(rack["A1"])
3232
pipette.aspirate(10, reservoir["A1"].top())

hardware-testing/hardware_testing/protocols/gravimetric_lpc/photometric/photometric_ot3_p50_multi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run(ctx: ProtocolContext) -> None:
2222
]
2323
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
2424
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
25-
pipette = ctx.load_instrument("p50_multi_gen3", "left")
25+
pipette = ctx.load_instrument("flex_8channel_50", "left")
2626
for rack in tipracks:
2727
pipette.pick_up_tip(rack["A1"])
2828
pipette.aspirate(10, reservoir["A1"].top())

hardware-testing/hardware_testing/protocols/gravimetric_lpc/photometric/photometric_ot3_p50_single.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def run(ctx: ProtocolContext) -> None:
2424
]
2525
reservoir = ctx.load_labware(RESERVOIR_LABWARE, SLOT_RESERVOIR)
2626
plate = ctx.load_labware(PHOTOPLATE_LABWARE, SLOT_PLATE)
27-
pipette = ctx.load_instrument("p50_single_gen3", "left")
27+
pipette = ctx.load_instrument("flex_1channel_50", "left")
2828
for rack in tipracks:
2929
pipette.pick_up_tip(rack["A1"])
3030
pipette.aspirate(10, reservoir["A1"].top())

hardware-testing/hardware_testing/protocols/installation_qualification/flex_iq_p1000_multi_200ul.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def run(ctx: ProtocolContext) -> None:
378378
# diluent tips, pipette, and reservoir
379379
if _get_diluent_volume():
380380
diluent_tips = ctx.load_labware("opentrons_flex_96_tiprack_200uL", "B3")
381-
if "p1000_multi" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
381+
if "8channel_1000" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
382382
diluent_pipette = dye_pipette # share the 8ch pipette
383383
else:
384384
diluent_pipette = ctx.load_instrument("flex_8channel_1000", "right")

hardware-testing/hardware_testing/protocols/installation_qualification/flex_iq_p50_multi_1ul.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def run(ctx: ProtocolContext) -> None:
387387
# diluent tips, pipette, and reservoir
388388
if _get_diluent_volume():
389389
diluent_tips = ctx.load_labware("opentrons_flex_96_tiprack_200uL", "B3")
390-
if "p1000_multi" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
390+
if "8channel_1000" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
391391
diluent_pipette = dye_pipette # share the 8ch pipette
392392
else:
393393
diluent_pipette = ctx.load_instrument("flex_8channel_1000", "right")

hardware-testing/hardware_testing/protocols/installation_qualification/flex_iq_p50_single_1ul.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def run(ctx: ProtocolContext) -> None:
374374
# diluent tips, pipette, and reservoir
375375
if _get_diluent_volume():
376376
diluent_tips = ctx.load_labware("opentrons_flex_96_tiprack_200uL", "B3")
377-
if "p1000_multi" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
377+
if "8channel_1000" in TEST_PIPETTE and ALLOW_TEST_PIPETTE_TO_TRANSFER_DILUENT:
378378
diluent_pipette = dye_pipette # share the 8ch pipette
379379
else:
380380
diluent_pipette = ctx.load_instrument("flex_8channel_1000", "right")

0 commit comments

Comments
 (0)