From ddd847cfffbab2fff0dcfca01f9fea4253d3895b Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Fri, 15 Apr 2022 09:33:41 +0000 Subject: [PATCH] fix: type error in a test --- tests/channels/stageInstances.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/channels/stageInstances.ts b/tests/channels/stageInstances.ts index 97ef06e60..af1f03f18 100644 --- a/tests/channels/stageInstances.ts +++ b/tests/channels/stageInstances.ts @@ -8,7 +8,7 @@ Deno.test("[stage] Create a stage instance", async (t) => { name: "createinstance", type: ChannelTypes.GuildStageVoice, }); - const instance = await bot.helpers.createStageInstance(stage.id, "test it"); + const instance = await bot.helpers.createStageInstance({ channelId: stage.id, topic: "test it" }); assertExists(instance); await t.step("[stage] Edit a stage instance", async () => {