Skip to content

Commit

Permalink
Update test_twopoint_difference.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mwregan2 committed Jan 30, 2024
1 parent 9701831 commit a061bdd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_twopoint_difference.py
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ def test_10grps_1cr_afterjump(setup_cube):
data[0, 8, 100, 100] = 1190
data[0, 9, 100, 100] = 1209

after_jump_flag_e1 = np.full(data.shape[2:4], 1.0) * 0.0
after_jump_flag_e1 = 1.0
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data,
gdq,
Expand Down Expand Up @@ -891,7 +891,7 @@ def test_10grps_1cr_afterjump_2group(setup_cube):
data[0, 8, 100, 100] = 1190
data[0, 9, 100, 100] = 1209

after_jump_flag_e1 = np.full(data.shape[2:4], 1.0) * 0.0
after_jump_flag_e1 = 1.0
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data,
gdq,
Expand Down Expand Up @@ -932,7 +932,7 @@ def test_10grps_1cr_afterjump_toosmall(setup_cube):
data[0, 8, 100, 100] = 1190
data[0, 9, 100, 100] = 1209

after_jump_flag_e1 = np.full(data.shape[2:4], 1.0) * 10000.0
after_jump_flag_e1 = 10000.0
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data,
gdq,
Expand Down Expand Up @@ -968,8 +968,8 @@ def test_10grps_1cr_afterjump_twothresholds(setup_cube):
data[0, 8, 100, 100] = 1190
data[0, 9, 100, 100] = 1209

after_jump_flag_e1 = np.full(data.shape[2:4], 1.0) * 500.0
after_jump_flag_e2 = np.full(data.shape[2:4], 1.0) * 10.0
after_jump_flag_e1 = 500.0
after_jump_flag_e2 = 10.0
out_gdq, row_below_gdq, rows_above_gdq, total_crs, stddev = find_crs(
data,
gdq,
Expand Down

0 comments on commit a061bdd

Please sign in to comment.