diff options
author | Thomas Hipp <thipp@suse.de> | 2017-12-18 14:03:19 +0100 |
---|---|---|
committer | Flavio Castelli <fcastelli@suse.com> | 2018-02-19 13:25:29 +0100 |
commit | 7619db353fe3b48356bc9b9e06d74fa364986346 (patch) | |
tree | 0cf5bcd33fadd7ef1a39ebe44df7c2b2cab9c60e | |
parent | 4c9f058d4032d8597e52ed0fca77503d42660278 (diff) | |
download | terraform-provider-libvirt-7619db353fe3b48356bc9b9e06d74fa364986346.tar terraform-provider-libvirt-7619db353fe3b48356bc9b9e06d74fa364986346.tar.gz |
sort imports
Signed-off-by: Thomas Hipp <thipp@suse.de>
-rw-r--r-- | libvirt/resource_libvirt_coreos_ignition.go | 3 | ||||
-rw-r--r-- | libvirt/utils_libvirt_test.go | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/libvirt/resource_libvirt_coreos_ignition.go b/libvirt/resource_libvirt_coreos_ignition.go index 5c14886d..8f3e40d2 100644 --- a/libvirt/resource_libvirt_coreos_ignition.go +++ b/libvirt/resource_libvirt_coreos_ignition.go @@ -2,8 +2,9 @@ package libvirt import ( "fmt" - "github.com/hashicorp/terraform/helper/schema" "log" + + "github.com/hashicorp/terraform/helper/schema" ) func resourceIgnition() *schema.Resource { diff --git a/libvirt/utils_libvirt_test.go b/libvirt/utils_libvirt_test.go index 0f53b6b3..e735d105 100644 --- a/libvirt/utils_libvirt_test.go +++ b/libvirt/utils_libvirt_test.go @@ -5,9 +5,10 @@ import ( "testing" "time" + "os" + libvirt "github.com/libvirt/libvirt-go" "github.com/libvirt/libvirt-go-xml" - "os" ) func TestGetHostXMLDesc(t *testing.T) { |