Prettified Code!

This commit is contained in:
itohatweb
2021-05-21 15:51:33 +00:00
committed by GitHub Action
parent fe4ab8517b
commit 3549cdeb63
279 changed files with 1617 additions and 1768 deletions
+3 -6
View File
@@ -33,7 +33,7 @@ Deno.test({
if (!cache.channels.has(category.id)) {
throw new Error(
"The channel seemed to be created but it was not cached.",
"The channel seemed to be created but it was not cached."
);
}
@@ -50,16 +50,13 @@ Deno.test({
if (!cache.channels.has(channel.id)) {
throw new Error(
"The channel seemed to be created but it was not cached.",
"The channel seemed to be created but it was not cached."
);
}
const isSynced = await isChannelSynced(channel.id);
assertEquals(
isSynced,
true,
);
assertEquals(isSynced, true);
},
...defaultTestOptions,
});