From 2830b4f3b0280bd3a48aa089568dc9cdf62ae22e Mon Sep 17 00:00:00 2001 From: bugbuilder Date: Sun, 9 Jul 2017 22:18:42 -0400 Subject: [PATCH] fix test --- post-processor/vsphere-tpl/post_processor_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-processor/vsphere-tpl/post_processor_test.go b/post-processor/vsphere-tpl/post_processor_test.go index 34675b16c..70dee8e14 100644 --- a/post-processor/vsphere-tpl/post_processor_test.go +++ b/post-processor/vsphere-tpl/post_processor_test.go @@ -13,7 +13,7 @@ func TestConfigureURL(t *testing.T) { p.config.VMName = "my vm" p.config.Insecure = true - if err := p.configureURL(); err == nil { + if err := p.configureURL(); err != nil { t.Errorf("Error: %s", err) } }