Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions autotest/regression/test_mf6.py
Original file line number Diff line number Diff line change
Expand Up @@ -2230,10 +2230,8 @@ def test035_create_tests_fhb(function_tmpdir, example_data_path):
model, storagecoefficient=True, iconvert=0, ss=0.01, sy=0.0
)
time = model.modeltime
assert (
time.steady_state[0] is False
and time.steady_state[1] is False
and time.steady_state[2] is False
assert not (
time.steady_state[0] or time.steady_state[1] or time.steady_state[2]
)
wel_period = {0: [((0, 1, 0), "flow")]}
wel_package = ModflowGwfwel(
Expand Down Expand Up @@ -3782,10 +3780,10 @@ def test005_advgw_tidal(function_tmpdir, example_data_path):
model = sim.get_model(model_name)
time = model.modeltime
assert (
time.steady_state[0] is True
and time.steady_state[1] is False
and time.steady_state[2] is False
and time.steady_state[3] is False
time.steady_state[0]
and not time.steady_state[1]
and not time.steady_state[2]
and not time.steady_state[3]
)
ghb = model.get_package("ghb")
obs = ghb.obs
Expand Down