You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a typo in the comparison statement for split and unsplit model concentrations: np.testing.assert_allclose( head.sel(time=2000)["head"].values, original_head.sel(time=200).values, ... )
both times should be 2000, not 2000 and 200.
This typo lead to unreasonably high tolerance settings to make the test pass.
The text was updated successfully, but these errors were encountered:
Fixes#823
# Description
Fixes a typo in the 1d transport model splitting test. Now that it's
fixed tolerances for the comparison could be made much stricter
# Checklist
- [X] Links to correct issue
- [ ] Update changelog, if changes affect users
- [X] PR title starts with ``Issue #nr``, e.g. ``Issue #737``
- [ ] Unit tests were added
- [ ] **If feature added**: Added/extended example
There was a typo in the comparison statement for split and unsplit model concentrations:
np.testing.assert_allclose( head.sel(time=2000)["head"].values, original_head.sel(time=200).values, ... )
both times should be 2000, not 2000 and 200.
This typo lead to unreasonably high tolerance settings to make the test pass.
The text was updated successfully, but these errors were encountered: