Skip to content

Commit bb564c6

Browse files
authored
refactor(api): remove evotips volume limit (#17805)
The 400ul limit isn't something we need anymore
1 parent 4461ca7 commit bb564c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

api/src/opentrons/protocol_engine/commands/evotip_seal_pipette.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
_PREP_DISTANCE_DEFAULT = 8.25
4545
_PRESS_DISTANCE_DEFAULT = 3.5
4646
_EJECTOR_PUSH_MM_DEFAULT = 7.0
47-
_SAFE_TOP_VOLUME = 400
47+
_SAFE_TOP_VOLUME = 1000
4848

4949

5050
class TipPickUpParams(BaseModel):

api/tests/opentrons/protocol_engine/commands/test_evotip_seal_pipette.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ async def test_success(
133133
),
134134
pipette_aspirated_fluid=update_types.PipetteAspiratedFluidUpdate(
135135
pipette_id="pipette-id",
136-
fluid=AspiratedFluid(kind=FluidKind.LIQUID, volume=400),
136+
fluid=AspiratedFluid(kind=FluidKind.LIQUID, volume=1000),
137137
),
138138
),
139139
)
@@ -221,7 +221,7 @@ async def test_no_tip_physically_missing_error(
221221
),
222222
pipette_aspirated_fluid=update_types.PipetteAspiratedFluidUpdate(
223223
pipette_id="pipette-id",
224-
fluid=AspiratedFluid(kind=FluidKind.LIQUID, volume=400),
224+
fluid=AspiratedFluid(kind=FluidKind.LIQUID, volume=1000),
225225
),
226226
),
227227
)

0 commit comments

Comments
 (0)