From 9e24c90a7644cc26d8ce3adb2be79b00d076c1a0 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Thu, 10 Oct 2024 15:11:59 +0530 Subject: [PATCH] Fix Lint Error --- pkg/pipelinerunmetrics/metrics_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/pipelinerunmetrics/metrics_test.go b/pkg/pipelinerunmetrics/metrics_test.go index 1cce84aba1d..a4337845271 100644 --- a/pkg/pipelinerunmetrics/metrics_test.go +++ b/pkg/pipelinerunmetrics/metrics_test.go @@ -569,7 +569,6 @@ func TestRecordRunningPipelineRunsCountAtPipelineLevel(t *testing.T) { checkLastValueDataForTags(t, "running_pipelineruns", map[string]string{"namespace": "testns1", "pipeline": "anonymous"}, 1) checkLastValueDataForTags(t, "running_pipelineruns", map[string]string{"namespace": "testns2", "pipeline": "anonymous"}, 2) checkLastValueDataForTags(t, "running_pipelineruns", map[string]string{"namespace": "testns3", "pipeline": "anonymous"}, 4) - } func TestRecordRunningPipelineRunsResolutionWaitCounts(t *testing.T) { @@ -678,7 +677,6 @@ func checkLastValueDataForTags(t *testing.T, name string, wantTags map[string]st if expected != val.Value { t.Error("Value did not match for ", name, wantTags, ", expected", expected, "got", val.Value) } - } }