Commit 5c13ce0
authored
fix(abr-testing): can't set pipette._last_tip_picked_up_from anymore (#19197)
# Overview
Since PR #19061, `InstrumentContext._last_tip_picked_up_from` is no
longer a property in the class, and can no longer be set.
This change was causing the ABR tests trash_bin_tip_removal.py and
waste_chute_tip_removal.py to fail, because they were trying to set
`_last_tip_picked_up_from` to `None` after manually ejecting the tip via
the hardware API.
This fix just deletes the line `pipette._last_tip_picked_up_from = None`.
The API will think that the pipette's tip came from wherever it came
from, but since that info is only used for tip-return, and the test is
not using tip-return, this is harmless.
## Test Plan and Hands on Testing
See if CI builds successfully now.
## Risk assessment
Low, should have no effect on the test's behavior.1 parent d14c146 commit 5c13ce0
File tree
2 files changed
+0
-2
lines changed- abr-testing/abr_testing/protocols/test_protocols
2 files changed
+0
-2
lines changedLines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
112 | | - | |
113 | 112 | | |
114 | 113 | | |
115 | 114 | | |
| |||
Lines changed: 0 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
90 | | - | |
91 | 90 | | |
92 | 91 | | |
93 | 92 | | |
| |||
0 commit comments