Fix go vet casing issue

This commit is contained in:
Chris Bednarski 2016-07-30 17:10:16 -07:00
parent b7954bc5d9
commit 644b11805d

View File

@ -2,8 +2,9 @@ package vagrantcloud
import (
"bytes"
"github.com/mitchellh/packer/packer"
"testing"
"github.com/mitchellh/packer/packer"
)
func testGoodConfig() map[string]interface{} {
@ -48,7 +49,7 @@ func TestPostProcessor_ImplementsPostProcessor(t *testing.T) {
var _ packer.PostProcessor = new(PostProcessor)
}
func TestproviderFromBuilderName(t *testing.T) {
func TestProviderFromBuilderName(t *testing.T) {
if providerFromBuilderName("foobar") != "foobar" {
t.Fatal("should copy unknown provider")
}