From 4c876652caab8949bc5916da03c6a9eeddda6ae4 Mon Sep 17 00:00:00 2001 From: Jean Connelly Date: Mon, 2 Dec 2024 16:03:56 -0500 Subject: [PATCH] Oops, edge at -512 --- chandra_aca/tests/test_aca_image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chandra_aca/tests/test_aca_image.py b/chandra_aca/tests/test_aca_image.py index e824e372..fc42218f 100644 --- a/chandra_aca/tests/test_aca_image.py +++ b/chandra_aca/tests/test_aca_image.py @@ -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]