From d96392f65ed6d10c458b484a0e67e8442bd19d54 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Tue, 29 Oct 2019 04:13:27 -0400 Subject: [PATCH] engine: resources: Improve error message in test Nothing major, just improve testing here. --- engine/resources/resources_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/resources/resources_test.go b/engine/resources/resources_test.go index 21eba872..482702fc 100644 --- a/engine/resources/resources_test.go +++ b/engine/resources/resources_test.go @@ -639,7 +639,7 @@ func TestResources2(t *testing.T) { return errwrap.Wrapf(e, "error from CheckApply did not match expected") } if checkOK != expCheckOK { - return fmt.Errorf("result from CheckApply did not match expected: `%t` != `%t`", checkOK, expCheckOK) + return fmt.Errorf("result from CheckApply did not match expected: got: %t exp: %t", checkOK, expCheckOK) } return nil }