From 6727f0e728120567fd42b727caf59d0ebe91d422 Mon Sep 17 00:00:00 2001 From: diamondburned Date: Mon, 30 Nov 2020 17:04:11 -0800 Subject: [PATCH] Voice: Fixed voice tests for new JoinChannel --- voice/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voice/integration_test.go b/voice/integration_test.go index f217086..4c3562f 100644 --- a/voice/integration_test.go +++ b/voice/integration_test.go @@ -61,7 +61,7 @@ func TestIntegration(t *testing.T) { // Join the voice channel concurrently. raceValue := raceMe(t, "failed to join voice channel", func() (interface{}, error) { - return v.JoinChannel(c.GuildID, c.ID, false, false) + return v.JoinChannel(c.ID, false, false) }) vs := raceValue.(*Session)