satellite/payments: fixed test so that it passes on non-UTC systems, simplified date comparison

Change-Id: I5e1b31efc148701b9d4918bf9870fb72fbca75ac
This commit is contained in:
Bill Thorp 2020-01-16 16:10:33 -05:00 committed by Bill Thorp
parent 5d80e22af9
commit 0c660f5490

View File

@ -75,9 +75,8 @@ func TestCouponRepository(t *testing.T) {
assert.NoError(t, err)
date, err := couponsRepo.GetLatest(ctx, coupon.ID)
assert.NoError(t, err)
isoMillis := "2006-01-02T15:04:05.000-0700Z"
// go and postgres has different precision. go - nanoseconds, postgres milli
assert.Equal(t, date.Format(isoMillis), now.Format(isoMillis))
// go and postgres has different precision. go - nanoseconds, postgres micro
assert.Equal(t, date.UTC(), now.Round(time.Microsecond))
})
t.Run("total usage", func(t *testing.T) {