From d14072e12b58d6836895a7072f3fb2ca0739a06b Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Fri, 14 Apr 2017 19:20:23 +0900 Subject: [PATCH] go vet --- mastodon_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon_test.go b/mastodon_test.go index 4815d5f..6b2a570 100644 --- a/mastodon_test.go +++ b/mastodon_test.go @@ -124,7 +124,7 @@ func TestForTheCoverages(t *testing.T) { (*NotificationEvent)(nil).event() (*DeleteEvent)(nil).event() (*ErrorEvent)(nil).event() - (&ErrorEvent{io.EOF}).Error() + _ = (&ErrorEvent{io.EOF}).Error() } func TestGetAccount(t *testing.T) {