From 957b42073bfdb965df7adfc36265bde9f58be2a3 Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Sat, 26 Mar 2016 21:34:49 +0100 Subject: [PATCH] Fixed govet error: arg inBody for printf verb %q of wrong type: *jira.Issue (vet) --- jira_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jira_test.go b/jira_test.go index 83f9a89..8aaa3b8 100644 --- a/jira_test.go +++ b/jira_test.go @@ -119,7 +119,7 @@ func TestNewRequest(t *testing.T) { // Test that body was JSON encoded body, _ := ioutil.ReadAll(req.Body) if got, want := string(body), outBody; got != want { - t.Errorf("NewRequest(%q) Body is %v, want %v", inBody, got, want) + t.Errorf("NewRequest(%v) Body is %v, want %v", inBody, got, want) } }