From 697b08f4c6cacc986e3414c362a6d1203bd599dd Mon Sep 17 00:00:00 2001 From: Patrick Jones Date: Mon, 19 Oct 2020 01:43:14 -0700 Subject: [PATCH] Forgot to collate string. --- google/internal/externalaccount/oauth/err_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/internal/externalaccount/oauth/err_test.go b/google/internal/externalaccount/oauth/err_test.go index deb6c5b..6ceb0c9 100644 --- a/google/internal/externalaccount/oauth/err_test.go +++ b/google/internal/externalaccount/oauth/err_test.go @@ -8,7 +8,7 @@ func TestError_Generator(t *testing.T) { "http:thisIsAPlaceholder", "The Answer!", } - want := "got error code " + "42" + " from " + "http:thisIsAPlaceholder" + ": " + "The Answer!" + want := "got error code 42 from http:thisIsAPlaceholder: The Answer!" if got := e.Error(); got != want { t.Errorf("Got error message %q; want %q", got, want) }