From 02ed0e4b0947ad7eb84010820d85bde74c11f8ce Mon Sep 17 00:00:00 2001 From: tombuildsstuff Date: Mon, 10 Apr 2017 12:28:17 +0100 Subject: [PATCH] Updating the error message --- builtin/providers/opc/provider_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/opc/provider_test.go b/builtin/providers/opc/provider_test.go index 8c2c842d8..db6dc8a24 100644 --- a/builtin/providers/opc/provider_test.go +++ b/builtin/providers/opc/provider_test.go @@ -23,7 +23,7 @@ func init() { func TestProvider(t *testing.T) { if err := Provider().(*schema.Provider).InternalValidate(); err != nil { - t.Fatalf("err: %s", err) + t.Fatalf("Error creating Provider: %s", err) } }