Skip to content

Commit

Permalink
exo test fix with removal of time dimension expansion for time indepe…
Browse files Browse the repository at this point in the history
…ndent features
  • Loading branch information
bnb32 committed Sep 21, 2024
1 parent 69e8344 commit cf5e466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/rasterizers/test_exo.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def test_srl_extraction_h5(s_enhance):
assert np.argmin(dist) == gid

# make sure the mean srlation makes sense
test_out = hr_srl[idy, idx, 0, 0]
test_out = hr_srl[idy, idx, 0]
true_out = te.source_data[iloc].mean()
assert np.allclose(test_out, true_out)

Expand Down Expand Up @@ -272,7 +272,7 @@ def test_topo_extraction_h5(s_enhance):
assert np.argmin(dist) == gid

# make sure the mean elevation makes sense
test_out = hr_elev[idy, idx, 0, 0]
test_out = hr_elev[idy, idx, 0]
true_out = te.source_data[iloc].mean()
assert np.allclose(test_out, true_out)

Expand Down

0 comments on commit cf5e466

Please sign in to comment.