From 528cbecfcef98e0d4440c6a1eafeba72f953a731 Mon Sep 17 00:00:00 2001 From: Paul Tyng Date: Sat, 10 Mar 2018 21:53:54 -0500 Subject: [PATCH] Make failure message more explicit --- helper/resource/id_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/resource/id_test.go b/helper/resource/id_test.go index 26845832e..f1560dab1 100644 --- a/helper/resource/id_test.go +++ b/helper/resource/id_test.go @@ -32,7 +32,7 @@ func TestUniqueId(t *testing.T) { rest := strings.TrimPrefix(id, UniqueIdPrefix) if len(rest) != UniqueIDSuffixLength { - t.Fatalf("Post-prefix part has wrong length! %s", rest) + t.Fatalf("PrefixedUniqueId is out of sync with UniqueIDSuffixLength, post-prefix part has wrong length! %s", rest) } timestamp, increment := split(rest)