terraform: final failing test

This commit is contained in:
Mitchell Hashimoto 2015-10-15 13:52:27 -07:00
parent 344e7c26b5
commit 263cc1b855
1 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ import (
"sync"
"testing"
"github.com/hashicorp/go-getter"
"github.com/hashicorp/terraform/config"
"github.com/hashicorp/terraform/config/module"
)
@ -70,7 +71,7 @@ func testModule(t *testing.T, name string) *module.Tree {
t.Fatalf("err: %s", err)
}
s := &module.FolderStorage{StorageDir: tempDir(t)}
s := &getter.FolderStorage{StorageDir: tempDir(t)}
if err := mod.Load(s, module.GetModeGet); err != nil {
t.Fatalf("err: %s", err)
}