From 5269c1bf4c1e8b9fc9d01d9434e6d61b70597374 Mon Sep 17 00:00:00 2001 From: Still Hsu <341464@gmail.com> Date: Fri, 15 Jun 2018 06:51:48 +0800 Subject: [PATCH] Fix Test to resolve changes made in 15b58e --- test/Discord.Net.Tests/Tests.Migrations.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Discord.Net.Tests/Tests.Migrations.cs b/test/Discord.Net.Tests/Tests.Migrations.cs index 23e55a737..2bd36220a 100644 --- a/test/Discord.Net.Tests/Tests.Migrations.cs +++ b/test/Discord.Net.Tests/Tests.Migrations.cs @@ -19,7 +19,7 @@ namespace Discord if (client == null) { client = new DiscordRestClient(); - await client.LoginAsync(TokenType.Bot, _config.Token, false).ConfigureAwait(false); + await client.LoginAsync(TokenType.Bot, _config.Token).ConfigureAwait(false); guild = await client.GetGuildAsync(_config.GuildId); }