Skip to content

Commit

Permalink
Fixed tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcrenshaw committed Oct 27, 2024
1 parent 1b0cbea commit 5b11683
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions python/lsst/ts/wep/task/calcZernikesTask.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ def initZkTable(self) -> QTable:
("extra_sn", "<f4"),
("intra_entropy", "<f4"),
("extra_entropy", "<f4"),
("intra_frac_bad_pix", "<f4"),
("extra_frac_bad_pix", "<f4"),
]
for j in range(4, self.maxNollIndex + 1):
dtype.append((f"Z{j}", "<f4"))
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ts/wep/task/cutOutDonutsBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class CutOutDonutsBaseTaskConfig(
badPixelMaskDefinitions = pexConfig.ListField(
doc="List of mask values flagged as 'bad' for Zernike estimation.",
dtype=str,
default=["SAT", "BAD", "NO_DATA"],
default=["SAT", "BAD", "NO_DATA", "INTRP"],
)


Expand Down

0 comments on commit 5b11683

Please sign in to comment.