From 02bb1e69078dc8256c61d6bc17225f4636a834df Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 1 May 2017 10:20:28 -0400 Subject: [PATCH] provider/heroku: Output IDs on failure --- .../providers/heroku/resource_heroku_pipeline_coupling_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/heroku/resource_heroku_pipeline_coupling_test.go b/builtin/providers/heroku/resource_heroku_pipeline_coupling_test.go index 3835f8e7ae..6fd8b51953 100644 --- a/builtin/providers/heroku/resource_heroku_pipeline_coupling_test.go +++ b/builtin/providers/heroku/resource_heroku_pipeline_coupling_test.go @@ -77,7 +77,7 @@ func testAccCheckHerokuPipelineCouplingExists(n string, pipeline *heroku.Pipelin } if foundPipelineCoupling.ID != rs.Primary.ID { - return fmt.Errorf("PipelineCoupling not found") + return fmt.Errorf("PipelineCoupling not found: %s != %s", foundPipelineCoupling.ID, rs.Primary.ID) } *pipeline = *foundPipelineCoupling