From 64ac0a0ba6deb85c29da8dee046b4aa6a57a10f7 Mon Sep 17 00:00:00 2001 From: George Robinson Date: Thu, 16 Nov 2023 00:55:04 +0000 Subject: [PATCH] Fix lint Signed-off-by: George Robinson --- test/with_api_v2/acceptance/silence_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/with_api_v2/acceptance/silence_test.go b/test/with_api_v2/acceptance/silence_test.go index 5eb4b63a8b..9f35dad4ef 100644 --- a/test/with_api_v2/acceptance/silence_test.go +++ b/test/with_api_v2/acceptance/silence_test.go @@ -15,14 +15,15 @@ package test import ( "fmt" - "github.com/go-openapi/strfmt" - "github.com/prometheus/alertmanager/api/v2/client/silence" - "github.com/prometheus/alertmanager/api/v2/models" - "github.com/stretchr/testify/require" "strings" "testing" "time" + "github.com/go-openapi/strfmt" + "github.com/stretchr/testify/require" + + "github.com/prometheus/alertmanager/api/v2/client/silence" + "github.com/prometheus/alertmanager/api/v2/models" . "github.com/prometheus/alertmanager/test/with_api_v2" )