Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(regression): fix syntax causing regression test failures #2129

Merged
merged 1 commit into from
Mar 28, 2024
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
Loading