From e47392e3359ce249e456ea05f71cc86d14abf17e Mon Sep 17 00:00:00 2001 From: Luis Presuel Date: Fri, 15 Sep 2023 09:23:40 -0600 Subject: [PATCH] fixing import order --- plugin/pki/path_venafi_cert_enroll.go | 2 +- plugin/pki/path_venafi_cert_enroll_test.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/pki/path_venafi_cert_enroll.go b/plugin/pki/path_venafi_cert_enroll.go index 8a614ba..2c4beeb 100644 --- a/plugin/pki/path_venafi_cert_enroll.go +++ b/plugin/pki/path_venafi_cert_enroll.go @@ -16,7 +16,6 @@ import ( "sync" "time" - "github.com/Venafi/vault-pki-backend-venafi/plugin/pki/vpkierror" "github.com/Venafi/vcert/v5" "github.com/Venafi/vcert/v5/pkg/certificate" "github.com/Venafi/vcert/v5/pkg/endpoint" @@ -27,6 +26,7 @@ import ( "github.com/hashicorp/vault/sdk/helper/consts" "github.com/hashicorp/vault/sdk/logical" + "github.com/Venafi/vault-pki-backend-venafi/plugin/pki/vpkierror" "github.com/Venafi/vault-pki-backend-venafi/plugin/util" ) diff --git a/plugin/pki/path_venafi_cert_enroll_test.go b/plugin/pki/path_venafi_cert_enroll_test.go index 4d77990..e4fb923 100644 --- a/plugin/pki/path_venafi_cert_enroll_test.go +++ b/plugin/pki/path_venafi_cert_enroll_test.go @@ -3,8 +3,9 @@ package pki import ( "testing" - "github.com/Venafi/vault-pki-backend-venafi/plugin/util" "github.com/Venafi/vcert/v5" + + "github.com/Venafi/vault-pki-backend-venafi/plugin/util" ) func TestOriginInRequest(t *testing.T) {