From 3bd6934b5a6755f6c7bc7aaee12be4f1cf922e15 Mon Sep 17 00:00:00 2001 From: Essam Eldaly Date: Fri, 13 Dec 2024 15:38:25 -0800 Subject: [PATCH] run gofmt Signed-off-by: Essam Eldaly --- pkg/ingester/limiter_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ingester/limiter_test.go b/pkg/ingester/limiter_test.go index 02f8cac08d..790bc4a766 100644 --- a/pkg/ingester/limiter_test.go +++ b/pkg/ingester/limiter_test.go @@ -602,7 +602,7 @@ func TestLimiter_FormatError(t *testing.T) { actual = limiter.FormatError("user-1", errors.Wrap(errMaxSeriesPerMetricLimitExceeded, "{metric name: testMetric}")) assert.EqualError(t, actual, "per-metric series limit of 20 exceeded, please contact administrator to raise it {metric name: testMetric} (local limit: 0 global limit: 20 actual local limit: 20)") - + actual = limiter.FormatError("user-1", errors.Wrap(errMaxMetadataPerMetricLimitExceeded, "{metric name: testMetric}")) assert.EqualError(t, actual, "per-metric metadata limit of 3 exceeded, please contact administrator to raise it {metric name: testMetric} (local limit: 0 global limit: 3 actual local limit: 3)")