We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbd58da commit dde03dcCopy full SHA for dde03dc
1 file changed
tests/test_coadds.py
@@ -35,6 +35,7 @@
35
from lsst.cell_coadds import (
36
CellCoaddFitsReader,
37
CellIdentifiers,
38
+ CoaddInputs,
39
CoaddUnits,
40
CommonComponents,
41
ExplodedCoadd,
@@ -244,15 +245,15 @@ def setUpClass(cls) -> None:
244
245
geom.Point2I(cls.x0 + x * cls.inner_size_x, cls.y0 + y * cls.inner_size_y),
246
geom.Extent2I(cls.inner_size_x, cls.inner_size_y),
247
),
- inputs=(
248
+ inputs={
249
ObservationIdentifiers(
250
instrument="dummy",
251
physical_filter="dummy-I",
252
visit=12345,
253
detector=67,
254
day_obs=20000101,
- ),
255
+ ): CoaddInputs(True, 1.0, 1.0)
256
+ },
257
common=common,
258
identifiers=identifiers,
259
aperture_correction_map=aperture_correction_map,
0 commit comments