From 6df17e7c564935f66623cadd251a1340348a6b47 Mon Sep 17 00:00:00 2001 From: Michael Crenshaw Date: Tue, 22 Mar 2022 15:55:09 -0400 Subject: [PATCH] chore: fix imports (#8859) Signed-off-by: Michael Crenshaw --- test/e2e/fixture/project/actions.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/e2e/fixture/project/actions.go b/test/e2e/fixture/project/actions.go index 4c3b929277f91..3123da3f43768 100644 --- a/test/e2e/fixture/project/actions.go +++ b/test/e2e/fixture/project/actions.go @@ -3,10 +3,11 @@ package project import ( "context" - "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" - "github.com/argoproj/argo-cd/v2/test/e2e/fixture" "github.com/stretchr/testify/require" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + + "github.com/argoproj/argo-cd/v2/pkg/apis/application/v1alpha1" + "github.com/argoproj/argo-cd/v2/test/e2e/fixture" ) // this implements the "when" part of given/when/then