Skip to content

Commit

Permalink
Merge pull request #59 from lsst/tickets/DM-24980
Browse files Browse the repository at this point in the history
Fix formatted string in test.
  • Loading branch information
ktlim committed May 19, 2020
2 parents 8f2fd4b + 9f2d97d commit 66397f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_dateTime.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def testDM7622(self):
try:
dt = DateTime(dateStr, scale)
except Exception:
self.fail("Date {} unusable; DM-7622 is still with us".format(dateStr, scale))
self.fail("Date {} in scale {} unusable".format(dateStr, scale))
self.assertEqual(dt.nsecs(scale), int(-1e9))

def testStr(self):
Expand Down

0 comments on commit 66397f0

Please sign in to comment.