Skip to content

Commit

Permalink
Fix test flake.
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Littley <[email protected]>
  • Loading branch information
cody-littley committed Nov 12, 2024
1 parent 2c66afc commit 325a6fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/kvstore/tablestore/ttl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestExpiryKeyOrdering(t *testing.T) {
aTime, _ := parsePrependedTimestamp(a)
bTime, _ := parsePrependedTimestamp(b)

assert.True(t, aTime.Before(bTime))
assert.True(t, aTime.Before(bTime) || aTime.Equal(bTime))
}
}

Expand Down

0 comments on commit 325a6fb

Please sign in to comment.