Skip to content

Commit

Permalink
Merge pull request #147 from lsst/tickets/DM-38062
Browse files Browse the repository at this point in the history
DM-38062: Fix debug logging in test
  • Loading branch information
timj committed Feb 21, 2023
2 parents 024b622 + a6b717b commit a00dc4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ellipKPM.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def test_te1(self):
for band in ('i',):
catalog, expected = self.load_data(('TE1', band))
result = task.run('TE1', {'i': [CalibratedCatalog(catalog), ]})
log.debug('result: ', result)
log.debug('expected: ', expected)
log.debug('result: %s', result.measurement)
log.debug('expected: %s', expected)
np.testing.assert_almost_equal(result.measurement.quantity, expected.quantity, decimal=5)


Expand Down

0 comments on commit a00dc4e

Please sign in to comment.