From 5b07e2604c7dd1e9ca9a5bdae6df529b260c08f1 Mon Sep 17 00:00:00 2001 From: Ben Langfeld Date: Fri, 14 Mar 2014 13:22:44 -0300 Subject: [PATCH] Fix export opts tests --- builder/virtualbox/common/export_opts_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/builder/virtualbox/common/export_opts_test.go b/builder/virtualbox/common/export_opts_test.go index b86d0eb40..16703633d 100644 --- a/builder/virtualbox/common/export_opts_test.go +++ b/builder/virtualbox/common/export_opts_test.go @@ -10,7 +10,9 @@ func TestExportOptsPrepare_BootWait(t *testing.T) { // Good c = new(ExportOpts) - c.ExportOpts = "ovf" + c.ExportOpts = []string{ + "--options", + } errs = c.Prepare(testConfigTemplate(t)) if len(errs) > 0 { t.Fatalf("should not have error: %s", errs)