Skip to content

Commit

Permalink
Remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelosthege committed Mar 26, 2024
1 parent b846579 commit dc2075f
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions robotools/worklists/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,14 +574,6 @@ def test_max_volume_checking(self) -> None:
max_volume=100 * 1000,
initial_volumes=50 * 1000,
)
destination = Trough(
"WaterTrough",
virtual_rows=3,
columns=3,
min_volume=1000,
max_volume=100 * 1000,
initial_volumes=50 * 1000,
)
with BaseWorklist(max_volume=900, auto_split=False) as wl:
with pytest.raises(InvalidOperationError):
wl.aspirate_well("WaterTrough", 1, 1000)
Expand All @@ -600,14 +592,6 @@ def test_max_volume_checking(self) -> None:
max_volume=100 * 1000,
initial_volumes=50 * 1000,
)
destination = Trough(
"WaterTrough",
virtual_rows=3,
columns=3,
min_volume=1000,
max_volume=100 * 1000,
initial_volumes=50 * 1000,
)
with BaseWorklist(max_volume=1200) as wl:
wl.aspirate_well("WaterTrough", 1, 1000)
wl.dispense_well("WaterTrough", 1, 1000)
Expand Down

0 comments on commit dc2075f

Please sign in to comment.