From f337c5519d7a0a76c6d2ca34c7fc34382a22fc58 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Fri, 12 Nov 2021 22:09:46 +0000 Subject: [PATCH] fix: ban test typo --- tests/helpers/members/ban.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/members/ban.ts b/tests/helpers/members/ban.ts index 63b58725c..10201c79e 100644 --- a/tests/helpers/members/ban.ts +++ b/tests/helpers/members/ban.ts @@ -27,7 +27,7 @@ export async function unbanTest(bot: Bot, t: Deno.TestContext, guildId: bigint, banCounters.set(user.id, false); }; - await bot.helpers.unban(guildId, id); + await bot.helpers.unbanMember(guildId, id); await delayUntil(10000, () => !banCounters.get(id));