From 154f28a3168edf383139f13aff9fd3df3d7e858b Mon Sep 17 00:00:00 2001 From: beorn7 Date: Thu, 23 Aug 2018 00:05:02 +0200 Subject: [PATCH] Fix import grouping Signed-off-by: beorn7 --- prometheus/testutil/testutil.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/prometheus/testutil/testutil.go b/prometheus/testutil/testutil.go index 3acb8ef..6145833 100644 --- a/prometheus/testutil/testutil.go +++ b/prometheus/testutil/testutil.go @@ -19,9 +19,11 @@ import ( "reflect" "sort" - "github.com/prometheus/client_golang/prometheus" - dto "github.com/prometheus/client_model/go" "github.com/prometheus/common/expfmt" + + dto "github.com/prometheus/client_model/go" + + "github.com/prometheus/client_golang/prometheus" ) // GatherAndCompare retrieves all metrics exposed by a collector and compares it