From e4e99ff7d0a6e294b11b71d44516e41a99fe9c89 Mon Sep 17 00:00:00 2001 From: Ed Zavada Date: Tue, 29 Oct 2024 10:41:15 -0400 Subject: [PATCH] Fixed failing test caused by seconds -> millisecond change --- cardinal/router/iterator/iterator_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cardinal/router/iterator/iterator_test.go b/cardinal/router/iterator/iterator_test.go index ae0945eee..a913d61bf 100644 --- a/cardinal/router/iterator/iterator_test.go +++ b/cardinal/router/iterator/iterator_test.go @@ -103,7 +103,7 @@ func TestIteratorHappyPath(t *testing.T) { protoTx := &shard.Transaction{ PersonaTag: "ty", Namespace: namespace, - Timestamp: time.Date(2023, 1, 1, 0, 0, 0, 0, time.UTC).Unix(), + Timestamp: time.Date(2023, 1, 1, 0, 0, 0, 0, time.UTC).UnixMilli(), Signature: "fo", Body: msgBytes, }