Skip to content

Commit

Permalink
Elaborate on comments in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed Aug 6, 2024
1 parent ca7f123 commit b27c185
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions api/tests/opentrons/test_simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def test_liquid_probe_get_protocol_api() -> None:
"opentrons_96_wellplate_200ul_pcr_full_skirt", "A2"
)
pipette.pick_up_tip(tip_rack["A1"])
pipette.require_liquid_presence(well_plate["A1"])
pipette.require_liquid_presence(well_plate["A1"]) # Should not raise MustHomeError.


def test_liquid_probe_simulate_file() -> None:
Expand All @@ -330,7 +330,9 @@ def run(protocol):
"""
)
protocol_contents_stream = io.StringIO(protocol_contents)
simulate.simulate(protocol_file=protocol_contents_stream) # Should not raise.
simulate.simulate(
protocol_file=protocol_contents_stream
) # Should not raise MustHomeError.


class TestGetProtocolAPILabware:
Expand Down

0 comments on commit b27c185

Please sign in to comment.