Skip to content

Commit

Permalink
Merge pull request #45 from lsst/tickets/DM-26331
Browse files Browse the repository at this point in the history
DM-26331: Adapt to DimensionRecord API change in daf_butler.
  • Loading branch information
TallJimbo committed Aug 21, 2020
2 parents db27ee5 + b54c72f commit 5ad0983
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_packers.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ def setUp(self):
values=("unimportant",),
).expanded(
records={
"skymap": self.universe["skymap"].RecordClass.fromDict({
"name": "unimportant",
"tract_max": 5,
"patch_nx_max": 3,
"patch_ny_max": 3,
})
"skymap": self.universe["skymap"].RecordClass(
name="unimportant",
tract_max=5,
patch_nx_max=3,
patch_ny_max=3,
)
}
)

Expand Down

0 comments on commit 5ad0983

Please sign in to comment.