Skip to content

Commit

Permalink
bump mean/var difference for SHP test
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Aug 17, 2023
1 parent 1222af5 commit a8f9a73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_shp.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_shp_half_mean_different(slcs, method):
halfwin_rowcol = (5, 5)
# make the top half different amplitude
mean2 = mean.copy()
mean2[:5, :] += 500
mean2[:5, :] += 2000
# For this test, make all variances equal (just checking mean)
var[:] = var[5, 5]

Expand Down Expand Up @@ -140,7 +140,7 @@ def test_shp_half_var_different(slcs, method):
halfwin_rowcol = (5, 5)
# make the top half different amplitude
var2 = var.copy()
var2[:5, :] += 500
var2[:5, :] += 5000
# For this test, make all means equal (just checking var)
mean[:] = mean[5, 5]

Expand Down

0 comments on commit a8f9a73

Please sign in to comment.