Skip to content

Commit 8b04d5c

Browse files
committed
Fix tests
1 parent abc0f06 commit 8b04d5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/querier/querier_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1633,8 +1633,8 @@ func TestQuerier_DetectedLabels(t *testing.T) {
16331633
storeClient.On("LabelNamesForMetricName", mock.Anything, mock.Anything, mock.Anything, mock.Anything, mock.Anything).
16341634
Return([]string{}, nil)
16351635
request := logproto.DetectedLabelsRequest{
1636-
Start: &now,
1637-
End: &now,
1636+
Start: now,
1637+
End: now.Add(2 * time.Hour),
16381638
Query: "",
16391639
}
16401640

0 commit comments

Comments
 (0)