Skip to content

Commit 3be24b1

Browse files
committed
post-edge-merge test fixes
1 parent 0ae6945 commit 3be24b1

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

api/tests/opentrons/protocol_api_integration/test_transfer_with_liquid_classes.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ def test_water_distribution_raises_error_for_disposal_vol_without_blowout(
16781678
)
16791679
@pytest.mark.parametrize(
16801680
["new_tip", "expected_number_of_calls"],
1681-
[("once", 1), ("always", 12), ("per_source", 12)],
1681+
[("always", 12), ("per source", 12)],
16821682
)
16831683
def test_water_transfer_with_lpd(
16841684
simulated_protocol_context: ProtocolContext,
@@ -1869,4 +1869,12 @@ def test_incompatible_transfers_skip_probing_even_with_lpd_on(
18691869
new_tip="always",
18701870
trash_location=trash,
18711871
)
1872+
pipette_1k.transfer_liquid(
1873+
liquid_class=water,
1874+
volume=40,
1875+
source=nest_plate.rows()[0],
1876+
dest=arma_plate.rows()[0],
1877+
new_tip="once",
1878+
trash_location=trash,
1879+
)
18721880
patched_liquid_probe.assert_not_called()

api/tests/opentrons/protocols/advanced_control/transfers/test_transfer_liquid_utils.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
),
4444
pytest.raises(
4545
RuntimeError,
46-
match="Received submerge start location of Location\\(point=Point\\(x=4, y=5, z=6\\), labware=, is_meniscus=False\\)"
47-
" and aspirate location of Location\\(point=Point\\(x=5, y=6, z=7\\), labware=, is_meniscus=False\\)."
46+
match="Received submerge start location of Location\\(point=Point\\(x=4, y=5, z=6\\), labware=, meniscus_tracking=None\\)"
47+
" and aspirate location of Location\\(point=Point\\(x=5, y=6, z=7\\), labware=, meniscus_tracking=None\\)."
4848
" Submerge start location z should not be lower than the aspirate location z.",
4949
),
5050
),
@@ -57,8 +57,8 @@
5757
),
5858
pytest.raises(
5959
RuntimeError,
60-
match="Received retract end location of Location\\(point=Point\\(x=4, y=5, z=6\\), labware=, is_meniscus=False\\)"
61-
" and dispense location of Location\\(point=Point\\(x=5, y=6, z=7\\), labware=, is_meniscus=False\\)."
60+
match="Received retract end location of Location\\(point=Point\\(x=4, y=5, z=6\\), labware=, meniscus_tracking=None\\)"
61+
" and dispense location of Location\\(point=Point\\(x=5, y=6, z=7\\), labware=, meniscus_tracking=None\\)."
6262
" Retract end location z should not be lower than the dispense location z.",
6363
),
6464
),
@@ -102,7 +102,7 @@ def test_raise_only_if_pip_location_below_target(
102102
pytest.raises(
103103
RuntimeError,
104104
match="Retract end location Location\\(point=Point\\(x=4, y=5, z=6\\), labware=,"
105-
" is_meniscus=False\\) is inside the liquid in well Well A1 of"
105+
" meniscus_tracking=None\\) is inside the liquid in well Well A1 of"
106106
" test_labware when it should be outside\\(above\\) the liquid.",
107107
),
108108
),
@@ -113,7 +113,7 @@ def test_raise_only_if_pip_location_below_target(
113113
pytest.raises(
114114
RuntimeError,
115115
match="Retract end location Location\\(point=Point\\(x=5, y=6, z=7\\), labware=,"
116-
" is_meniscus=False\\) is inside the liquid in well Well A1 of"
116+
" meniscus_tracking=None\\) is inside the liquid in well Well A1 of"
117117
" test_labware when it should be outside\\(above\\) the liquid.",
118118
),
119119
),

0 commit comments

Comments
 (0)