diff --git a/lib/storage/block_test.go b/lib/storage/block_test.go index 586995b86..e057b465a 100644 --- a/lib/storage/block_test.go +++ b/lib/storage/block_test.go @@ -107,7 +107,7 @@ func getRandValues(rowsCount int) []int64 { func getRandTimestamps(rowsCount int) []int64 { a := make([]int64, rowsCount) - ts := int64(rand.Intn(1e12)) + ts := int64(rand.Intn(1e9)) for i := 0; i < rowsCount; i++ { a[i] = ts ts += int64(rand.Intn(1e5))