Skip to content

Commit

Permalink
fix:
Browse files Browse the repository at this point in the history
fix: test

Signed-off-by: Clément Salaün <[email protected]>
  • Loading branch information
altitude committed Feb 5, 2024
1 parent 905dfcd commit ebd4f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/sqlstorage/transactions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ func testTransactions(t *testing.T, store *sqlstorage.Store) {
require.Equal(t, 1, cursor.PageSize)

// Transaction timestamp fetched should be equal to the timestamp of the committed transaction.
require.Equal(t, cursor.Data[0].Timestamp, tx3.Timestamp.Format(time.RFC3339))
require.True(t, cursor.Data[0].Timestamp.Equal(tx3.Timestamp))

cursor, err = store.GetTransactions(context.Background(), ledger.TransactionsQuery{
AfterTxID: cursor.Data[0].ID,
Expand Down

0 comments on commit ebd4f1d

Please sign in to comment.