diff --git a/builder/virtualbox/ovf/config.go b/builder/virtualbox/ovf/config.go index 12141cc23..9e37659fc 100644 --- a/builder/virtualbox/ovf/config.go +++ b/builder/virtualbox/ovf/config.go @@ -57,7 +57,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { templates := map[string]*string{ "source_path": &c.SourcePath, - "vm_name": &c.VMName, + "vm_name": &c.VMName, } for n, ptr := range templates { diff --git a/builder/virtualbox/ovf/config_test.go b/builder/virtualbox/ovf/config_test.go index 56cb088f5..dbb156ce1 100644 --- a/builder/virtualbox/ovf/config_test.go +++ b/builder/virtualbox/ovf/config_test.go @@ -1,14 +1,14 @@ package ovf import ( - "testing" "io/ioutil" "os" + "testing" ) func testConfig(t *testing.T) map[string]interface{} { return map[string]interface{}{ - "ssh_username": "foo", + "ssh_username": "foo", "shutdown_command": "foo", } } @@ -31,7 +31,6 @@ func testConfigOk(t *testing.T, warns []string, err error) { } } - func TestNewConfig_sourcePath(t *testing.T) { // Bad c := testConfig(t) @@ -58,4 +57,3 @@ func TestNewConfig_sourcePath(t *testing.T) { _, warns, errs = NewConfig(c) testConfigOk(t, warns, errs) } -