Skip to content

Commit eae9857

Browse files
format
1 parent d5225c4 commit eae9857

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

imod/tests/test_mf6/test_mf6_wel.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,9 @@ def test_import_and_convert_to_mf6(imod5_dataset, tmp_path, wel_class):
883883
wel = wel_class.from_imod5_data("wel-WELLS_L3", data, times, minimum_thickness=1.0)
884884
assert wel.dataset["x"].values[0] == 197910.0
885885
assert wel.dataset["y"].values[0] == 362860.0
886-
np.testing.assert_almost_equal(np.mean(wel.dataset["rate"].values), -317.2059091946156)
886+
np.testing.assert_almost_equal(
887+
np.mean(wel.dataset["rate"].values), -317.2059091946156
888+
)
887889
# convert to a gridded well
888890
top = target_dis.dataset["top"]
889891
bottom = target_dis.dataset["bottom"]
@@ -895,7 +897,9 @@ def test_import_and_convert_to_mf6(imod5_dataset, tmp_path, wel_class):
895897
assert len(mf6_well.dataset["x"].values) == 1
896898
assert mf6_well.dataset["x"].values[0] == 197910.0
897899
assert mf6_well.dataset["y"].values[0] == 362860.0
898-
np.testing.assert_almost_equal(np.mean(mf6_well.dataset["rate"].values), -317.2059091946156)
900+
np.testing.assert_almost_equal(
901+
np.mean(mf6_well.dataset["rate"].values), -317.2059091946156
902+
)
899903

900904
# write the package for validation
901905
write_context = WriteContext(simulation_directory=tmp_path)

0 commit comments

Comments
 (0)