builder/virtualbox: fmt

This commit is contained in:
Mitchell Hashimoto 2013-12-23 14:21:28 -08:00
parent d569573923
commit 39d0600085
2 changed files with 3 additions and 5 deletions

View File

@ -1,9 +1,9 @@
package ovf
import (
"testing"
"io/ioutil"
"os"
"testing"
)
func testConfig(t *testing.T) map[string]interface{} {
@ -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)
}