From 241428976a859f3bc692c21f73088e4494ea0114 Mon Sep 17 00:00:00 2001 From: Bryan Boreham Date: Mon, 22 Nov 2021 12:19:55 +0000 Subject: [PATCH] distributor-queryable tests: make time go forward Conventionally the minimum time would be before the maximum. Apparently none of the tests were depending on this. Signed-off-by: Bryan Boreham --- pkg/querier/distributor_queryable_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/querier/distributor_queryable_test.go b/pkg/querier/distributor_queryable_test.go index 9eba3b8f3ad..a15f5e65e64 100644 --- a/pkg/querier/distributor_queryable_test.go +++ b/pkg/querier/distributor_queryable_test.go @@ -24,7 +24,7 @@ import ( ) const ( - maxt, mint = 0, 10 + mint, maxt = 0, 10 ) func TestDistributorQuerier(t *testing.T) {