summaryrefslogtreecommitdiff
path: root/std/log/mod_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/log/mod_test.ts')
-rw-r--r--std/log/mod_test.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/std/log/mod_test.ts b/std/log/mod_test.ts
index ceedcc858..30576011b 100644
--- a/std/log/mod_test.ts
+++ b/std/log/mod_test.ts
@@ -9,7 +9,9 @@ try {
// Need to initialize it here
// otherwise it will be already initialized on Deno.test
logger = getLogger();
-} catch {}
+} catch {
+ // Pass
+}
test("logger is initialized", function (): void {
assert(logger instanceof Logger);