From 544d1dfcb5c7d7be74fa932acfd8a3b4625d442f Mon Sep 17 00:00:00 2001 From: Chris Rhodes Date: Sat, 14 May 2016 09:43:47 -0700 Subject: [PATCH] Fix test. --- discord_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord_test.go b/discord_test.go index d2b497f..79a3e60 100644 --- a/discord_test.go +++ b/discord_test.go @@ -216,7 +216,7 @@ func TestOpenClose(t *testing.T) { // UpdateStatus - maybe we move this into wsapi_test.go but the websocket // created here is needed. This helps tests that the websocket was setup // and it is working. - if err = d.UpdateStatus(0, time.Now().String()); err != nil { + if err = d.UpdateStatus(0, time.Now().String(), ""); err != nil { t.Errorf("UpdateStatus error: %+v", err) }