From 699614b500f6a4cefd2add66a4a694472064eb89 Mon Sep 17 00:00:00 2001 From: Lars Lehtonen Date: Mon, 4 Nov 2019 12:58:16 -0800 Subject: [PATCH] packer/rpc: fix dropped error --- packer/rpc/post_processor_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packer/rpc/post_processor_test.go b/packer/rpc/post_processor_test.go index 1066c8f8b..3338915d2 100644 --- a/packer/rpc/post_processor_test.go +++ b/packer/rpc/post_processor_test.go @@ -112,6 +112,9 @@ func TestPostProcessorRPC_cancel(t *testing.T) { // Test Configure config := 42 err := ppClient.Configure(config) + if err != nil { + t.Fatalf("error configuring post-processor client: %s", err) + } // Test PostProcess a := &packer.MockArtifact{