Skip to content

Commit

Permalink
Oops, edge at -512
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanconn committed Dec 2, 2024
1 parent 45e0108 commit 4c87665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chandra_aca/tests/test_aca_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,8 +524,8 @@ def images_check_range(start, stop, img_table, *, bgsub):
row8x8 = row["IMGROW0_8X8"]
col8x8 = row["IMGCOL0_8X8"]

# If row8x8 or col8x8 is < 0 just skip the test for now
if row8x8 < 0 or col8x8 < 0:
# If row8x8 or col8x8 is < -512 just skip the test for now
if row8x8 < -512 or col8x8 < -512:
continue

dark_ref = full_img_dark.aca[row8x8 : row8x8 + 8, col8x8 : col8x8 + 8]
Expand Down

0 comments on commit 4c87665

Please sign in to comment.