From a5e51f6dad3bb3f216893723c8e5df513e1dd996 Mon Sep 17 00:00:00 2001 From: James Nugent Date: Fri, 27 Nov 2015 15:10:42 +0000 Subject: [PATCH] command/refresh: Fix import formats to prevent flapping --- command/refresh_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/refresh_test.go b/command/refresh_test.go index df0142d28c..b7cf3b7d16 100644 --- a/command/refresh_test.go +++ b/command/refresh_test.go @@ -1,6 +1,7 @@ package command import ( + "bytes" "io/ioutil" "os" "path/filepath" @@ -8,7 +9,6 @@ import ( "strings" "testing" - "bytes" "github.com/hashicorp/terraform/terraform" "github.com/mitchellh/cli" )