Skip to content

Commit

Permalink
Fix error in changed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
r-owen committed Apr 9, 2020
1 parent 6e9024d commit 38728c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_psfFitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ def testFullModel(self):
)
self.assertEqual(list(model.getAmplitudeNames()),
["inner.alpha[0,0]"]
+ [f"primary.alpha[{x}, {y}]"
+ [f"primary.alpha[{x},{y}]"
for n, x, y in lsst.shapelet.HermiteIndexGenerator(4)]
+ [f"wings.alpha[{x}, {y}]"
+ [f"wings.alpha[{x},{y}]"
for n, x, y in lsst.shapelet.HermiteIndexGenerator(4)]
+ ["outer.alpha[0,0]"])
self.assertEqual(list(model.getFixedNames()),
Expand Down

0 comments on commit 38728c5

Please sign in to comment.