Skip to content

Commit

Permalink
Fixed failing test caused by seconds -> millisecond change
Browse files Browse the repository at this point in the history
  • Loading branch information
ezavada committed Oct 29, 2024
1 parent 268c9ce commit e4e99ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cardinal/router/iterator/iterator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit e4e99ff

Please sign in to comment.