We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4765654 commit 6015dccCopy full SHA for 6015dcc
tests/test_tank.py
@@ -191,7 +191,9 @@ def test_mass_based_tank():
191
192
# Assert volume bounds
193
assert (real_tank_lox.gas_height <= real_tank_lox.geometry.top).all
194
- assert (example_tank_lox.gas_height <= example_tank_lox.geometry.total_volume).all
+ assert (real_tank_lox.fluid_volume <= real_tank_lox.geometry.total_volume).all
195
+ assert (example_tank_lox.gas_height <= example_tank_lox.geometry.top).all
196
+ assert (example_tank_lox.fluid_volume <= example_tank_lox.geometry.total_volume).all
197
198
initial_liquid_mass = 5
199
initial_gas_mass = 0
0 commit comments