aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/config/module/testing.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/config/module/testing.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/config/module/testing.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/vendor/github.com/hashicorp/terraform/config/module/testing.go b/vendor/github.com/hashicorp/terraform/config/module/testing.go
index fc9e733..6f1ff05 100644
--- a/vendor/github.com/hashicorp/terraform/config/module/testing.go
+++ b/vendor/github.com/hashicorp/terraform/config/module/testing.go
@@ -4,8 +4,6 @@ import (
4 "io/ioutil" 4 "io/ioutil"
5 "os" 5 "os"
6 "testing" 6 "testing"
7
8 "github.com/hashicorp/go-getter"
9) 7)
10 8
11// TestTree loads a module at the given path and returns the tree as well 9// TestTree loads a module at the given path and returns the tree as well
@@ -26,8 +24,8 @@ func TestTree(t *testing.T, path string) (*Tree, func()) {
26 } 24 }
27 25
28 // Get the child modules 26 // Get the child modules
29 s := &getter.FolderStorage{StorageDir: dir} 27 s := &Storage{StorageDir: dir, Mode: GetModeGet}
30 if err := mod.Load(s, GetModeGet); err != nil { 28 if err := mod.Load(s); err != nil {
31 t.Fatalf("err: %s", err) 29 t.Fatalf("err: %s", err)
32 return nil, nil 30 return nil, nil
33 } 31 }