From 021f5d0019ec2294f3122ceef351ed8d877c93bf Mon Sep 17 00:00:00 2001 From: hiromi-mi Date: Tue, 25 Feb 2020 20:38:06 +0900 Subject: [PATCH] fix CI for DeleteConversation --- status_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/status_test.go b/status_test.go index 85c0967..93f46e7 100644 --- a/status_test.go +++ b/status_test.go @@ -676,7 +676,7 @@ func TestDeleteConversation(t *testing.T) { ClientSecret: "bar", AccessToken: "hoge", }) - err = client.DeleteConversation(context.Background(), "12345678") + err := client.DeleteConversation(context.Background(), "12345678") if err != nil { t.Fatalf("should not be fail: %v", err) }