Skip to content

Commit

Permalink
update tip rack display names in api test
Browse files Browse the repository at this point in the history
  • Loading branch information
b-cooper committed Oct 20, 2023
1 parent 83f41a8 commit 88e4dc1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions api/tests/opentrons/test_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ def emit_runlog(entry: Any) -> None:
execute.execute(protocol.filelike, protocol.filename, emit_runlog=emit_runlog)

assert [item["payload"]["text"] for item in entries if item["$"] == "before"] == [
"Picking up tip from A1 of Opentrons 96 Tip Rack 1000 µL on 1",
"Picking up tip from A1 of Opentrons OT-2 96 Tip Rack 1000 µL on 1",
"Aspirating 100.0 uL from A1 of Corning 96 Well Plate 360 µL Flat on 2 at 500.0 uL/sec",
"Dispensing 100.0 uL into B1 of Corning 96 Well Plate 360 µL Flat on 2 at 1000.0 uL/sec",
"Dropping tip into H12 of Opentrons 96 Tip Rack 1000 µL on 1",
"Dropping tip into H12 of Opentrons OT-2 96 Tip Rack 1000 µL on 1",
]


Expand Down Expand Up @@ -197,7 +197,7 @@ def emit_runlog(entry: Any) -> None:
}
execute.execute(filelike, "simple.json", emit_runlog=emit_runlog)
assert [item["payload"]["text"] for item in entries if item["$"] == "before"] == [
"Picking up tip from B1 of Opentrons 96 Tip Rack 10 µL on 1",
"Picking up tip from B1 of Opentrons OT-2 96 Tip Rack 10 µL on 1",
"Aspirating 5.0 uL from A1 of Source Plate on 2 at 3.0 uL/sec",
"Delaying for 0 minutes and 42.0 seconds",
"Dispensing 4.5 uL into B1 of Dest Plate on 3 at 2.5 uL/sec",
Expand Down Expand Up @@ -235,7 +235,7 @@ def emit_runlog(entry: Any) -> None:
}
execute.execute(filelike, "simple.json", emit_runlog=emit_runlog)
assert [item["payload"]["text"] for item in entries if item["$"] == "before"] == [
"Picking up tip from B1 of Opentrons 96 Tip Rack 10 µL on 1",
"Picking up tip from B1 of Opentrons OT-2 96 Tip Rack 10 µL on 1",
"Aspirating 5.0 uL from A1 of Source Plate on 2 at 3.0 uL/sec",
"Delaying for 0 minutes and 42.0 seconds",
"Dispensing 4.5 uL into B1 of Dest Plate on 3 at 2.5 uL/sec",
Expand Down Expand Up @@ -273,7 +273,7 @@ def emit_runlog(entry: Any) -> None:
}
execute.execute(filelike, "simple.json", emit_runlog=emit_runlog)
assert [item["payload"]["text"] for item in entries if item["$"] == "before"] == [
"Picking up tip from B1 of Opentrons 96 Tip Rack 10 µL on 1",
"Picking up tip from B1 of Opentrons OT-2 96 Tip Rack 10 µL on 1",
"Aspirating 5.0 uL from A1 of Source Plate on 2 at 3.0 uL/sec",
"Delaying for 0 minutes and 42.0 seconds",
"Dispensing 4.5 uL into B1 of Dest Plate on 3 at 2.5 uL/sec",
Expand Down Expand Up @@ -317,17 +317,17 @@ def emit_runlog(entry: Any) -> None:
)
assert [item["payload"]["text"] for item in entries if item["$"] == "before"] == [
"Transferring 1.0 from A1 of FAKE example labware on 1 to A4 of FAKE example labware on 1",
"Picking up tip from A1 of Opentrons 96 Tip Rack 10 µL on 3",
"Picking up tip from A1 of Opentrons OT-2 96 Tip Rack 10 µL on 3",
"Aspirating 1.0 uL from A1 of FAKE example labware on 1 at" " 5.0 uL/sec",
"Dispensing 1.0 uL into A4 of FAKE example labware on 1 at" " 10.0 uL/sec",
"Dropping tip into A1 of Opentrons Fixed Trash on 12",
"Transferring 2.0 from A1 of FAKE example labware on 1 to A4 of FAKE example labware on 1",
"Picking up tip from B1 of Opentrons 96 Tip Rack 10 µL on 3",
"Picking up tip from B1 of Opentrons OT-2 96 Tip Rack 10 µL on 3",
"Aspirating 2.0 uL from A1 of FAKE example labware on 1 at 5.0 uL/sec",
"Dispensing 2.0 uL into A4 of FAKE example labware on 1 at" " 10.0 uL/sec",
"Dropping tip into A1 of Opentrons Fixed Trash on 12",
"Transferring 3.0 from A1 of FAKE example labware on 1 to A4 of FAKE example labware on 1",
"Picking up tip from C1 of Opentrons 96 Tip Rack 10 µL on 3",
"Picking up tip from C1 of Opentrons OT-2 96 Tip Rack 10 µL on 3",
"Aspirating 3.0 uL from A1 of FAKE example labware on 1 at 5.0 uL/sec",
"Dispensing 3.0 uL into A4 of FAKE example labware on 1 at" " 10.0 uL/sec",
"Dropping tip into A1 of Opentrons Fixed Trash on 12",
Expand Down

0 comments on commit 88e4dc1

Please sign in to comment.