@@ -27,8 +27,8 @@ def test_water_transfer_with_volume_more_than_tip_max(
27
27
tiprack = simulated_protocol_context .load_labware (
28
28
"opentrons_flex_96_tiprack_50ul" , "D1"
29
29
)
30
- pipette_50 = simulated_protocol_context .load_instrument (
31
- "flex_1channel_50 " , mount = "left" , tip_racks = [tiprack ]
30
+ pipette_1k = simulated_protocol_context .load_instrument (
31
+ "flex_1channel_1000 " , mount = "left" , tip_racks = [tiprack ]
32
32
)
33
33
nest_plate = simulated_protocol_context .load_labware (
34
34
"nest_96_wellplate_200ul_flat" , "C3"
@@ -47,7 +47,7 @@ def test_water_transfer_with_volume_more_than_tip_max(
47
47
mock_manager = mock .Mock ()
48
48
mock_manager .attach_mock (patched_pick_up_tip , "pick_up_tip" )
49
49
50
- pipette_50 .transfer_liquid (
50
+ pipette_1k .transfer_liquid (
51
51
liquid_class = water ,
52
52
volume = 60 ,
53
53
source = nest_plate .rows ()[0 ],
@@ -58,7 +58,7 @@ def test_water_transfer_with_volume_more_than_tip_max(
58
58
assert patched_pick_up_tip .call_count == 24
59
59
patched_pick_up_tip .reset_mock ()
60
60
61
- pipette_50 .transfer_liquid (
61
+ pipette_1k .transfer_liquid (
62
62
liquid_class = water ,
63
63
volume = 100 ,
64
64
source = nest_plate .rows ()[0 ],
@@ -69,16 +69,16 @@ def test_water_transfer_with_volume_more_than_tip_max(
69
69
assert patched_pick_up_tip .call_count == 12
70
70
patched_pick_up_tip .reset_mock ()
71
71
72
- pipette_50 .pick_up_tip ()
73
- pipette_50 .transfer_liquid (
72
+ pipette_1k .pick_up_tip ()
73
+ pipette_1k .transfer_liquid (
74
74
liquid_class = water ,
75
75
volume = 50 ,
76
76
source = nest_plate .rows ()[0 ],
77
77
dest = arma_plate .rows ()[0 ],
78
78
new_tip = "never" ,
79
79
trash_location = trash ,
80
80
)
81
- pipette_50 .drop_tip ()
81
+ pipette_1k .drop_tip ()
82
82
assert patched_pick_up_tip .call_count == 1
83
83
84
84
0 commit comments