From 61356c43440cba8231d6e6161992bbfe59065410 Mon Sep 17 00:00:00 2001 From: Eoin McAfee Date: Thu, 3 Jun 2021 14:15:41 +0100 Subject: [PATCH] fix import groupings --- plugin/converter/jsonnet/jsonnet_test.go | 3 ++- plugin/converter/template.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/converter/jsonnet/jsonnet_test.go b/plugin/converter/jsonnet/jsonnet_test.go index 3d944abc..22f97f58 100644 --- a/plugin/converter/jsonnet/jsonnet_test.go +++ b/plugin/converter/jsonnet/jsonnet_test.go @@ -1,9 +1,10 @@ package jsonnet import ( - "github.com/drone/drone/core" "io/ioutil" "testing" + + "github.com/drone/drone/core" ) func TestParse(t *testing.T) { diff --git a/plugin/converter/template.go b/plugin/converter/template.go index 1f0cbc16..0c9cd440 100644 --- a/plugin/converter/template.go +++ b/plugin/converter/template.go @@ -17,9 +17,9 @@ package converter import ( "context" "errors" - "github.com/drone/drone/plugin/converter/jsonnet" "github.com/drone/drone/core" + "github.com/drone/drone/plugin/converter/jsonnet" "github.com/drone/drone/plugin/converter/starlark" "regexp"