invoices: make sure the db uses the same testTime.

This commit is contained in:
ziggie 2025-01-29 01:24:12 +01:00
parent 34e56b69e9
commit 46f3260924
No known key found for this signature in database
GPG Key ID: 1AFF9C4DCED6D666

View File

@ -122,7 +122,7 @@ func TestInvoiceRegistry(t *testing.T) {
makeKeyValueDB := func(t *testing.T) (invpkg.InvoiceDB,
*clock.TestClock) {
testClock := clock.NewTestClock(testNow)
testClock := clock.NewTestClock(testTime)
db, err := channeldb.MakeTestInvoiceDB(
t, channeldb.OptionClock(testClock),
)
@ -156,7 +156,7 @@ func TestInvoiceRegistry(t *testing.T) {
},
)
testClock := clock.NewTestClock(testNow)
testClock := clock.NewTestClock(testTime)
return invpkg.NewSQLStore(executor, testClock), testClock
}