change: prettier code

This commit is contained in:
TriForMine
2021-10-30 19:44:54 +00:00
committed by GitHub Action
parent 87a6ec14e2
commit 93c4b6f008
2 changed files with 6 additions and 10 deletions
+3 -7
View File
@@ -1,14 +1,10 @@
import { Bot } from "../../../src/bot.ts";
import { assertExists } from "../../deps.ts";
export async function fetchSingleMemberTest(
bot: Bot,
guildId: bigint,
t: Deno.TestContext
) {
export async function fetchSingleMemberTest(bot: Bot, guildId: bigint, t: Deno.TestContext) {
const fetchedMember = await bot.helpers.fetchMembers(guildId, 0, {
userIds: [bot.id],
limit: 1,
userIds: [bot.id],
limit: 1,
});
// Assertions
+3 -3
View File
@@ -216,9 +216,9 @@ Deno.test("[Bot] - Starting Tests", async (t) => {
await fetchSingleMemberTest(bot, guild.id, t);
},
...sanitizeMode,
})
])
})
}),
]);
});
await stopBot(bot);
});