From 4fe34a5dc3ee95fc1700940c16ac8787837e8589 Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Fri, 6 Dec 2019 02:07:51 -0800 Subject: [PATCH] post-processor/docker-push: drop unused test helper functions (#8456) --- post-processor/docker-push/post-processor_test.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/post-processor/docker-push/post-processor_test.go b/post-processor/docker-push/post-processor_test.go index 3085c83ea..a1ef89aaa 100644 --- a/post-processor/docker-push/post-processor_test.go +++ b/post-processor/docker-push/post-processor_test.go @@ -10,19 +10,6 @@ import ( dockerimport "github.com/hashicorp/packer/post-processor/docker-import" ) -func testConfig() map[string]interface{} { - return map[string]interface{}{} -} - -func testPP(t *testing.T) *PostProcessor { - var p PostProcessor - if err := p.Configure(testConfig()); err != nil { - t.Fatalf("err: %s", err) - } - - return &p -} - func testUi() *packer.BasicUi { return &packer.BasicUi{ Reader: new(bytes.Buffer),