From 823ac9bf4b487df9293ad6be8dd837fc8e1d8faf Mon Sep 17 00:00:00 2001 From: Egor Redozubov Date: Mon, 18 Nov 2024 16:58:01 +0100 Subject: [PATCH] add missed comma --- expr/functions/countValues/function_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expr/functions/countValues/function_test.go b/expr/functions/countValues/function_test.go index 1826848e6..80ff5861d 100755 --- a/expr/functions/countValues/function_test.go +++ b/expr/functions/countValues/function_test.go @@ -85,7 +85,7 @@ func TestCountValues(t *testing.T) { }, }, { - "countValues(metric1.foo.*.*, 5)" + "countValues(metric1.foo.*.*, 5)", map[parser.MetricRequest][]*types.MetricData{ {"metric1.foo.*.*", 0, 1}: { types.MakeMetricData("metric1.foo.bar1.baz", []float64{1, 2, 3, 4, 5}, 1, now32),