Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
sanni-t committed Nov 15, 2024
1 parent 0cb41b8 commit d8c01cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shared-data/python/tests/liquid_classes/test_load.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ def test_load_liquid_class_schema_v1() -> None:
def test_load_definition() -> None:
water_definition = load_definition(name="water", version=1)
assert type(water_definition) is LiquidClassSchemaV1
assert water_definition.byPipette[0].pipetteModel == "p10_single"
assert water_definition.byPipette[0].pipetteModel == "flex_1channel_50"
assert water_definition.byPipette[0].byTipType[0].aspirate.submerge == Submerge(
positionReference=PositionReference.LIQUID_MENISCUS,
offset=Coordinate(x=0, y=0, z=-5),
positionReference=PositionReference.WELL_TOP,
offset=Coordinate(x=0, y=0, z=2),
speed=100,
delay=DelayProperties(enable=True, params=DelayParams(duration=1.5)),
delay=DelayProperties(enable=False, params=DelayParams(duration=0)),
)

0 comments on commit d8c01cd

Please sign in to comment.