summaryrefslogtreecommitdiff
path: root/std/log/mod_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-12 09:19:29 -0400
committerGitHub <noreply@github.com>2020-06-12 09:19:29 -0400
commitd0970daacda0b6f6c2077c2f81948536b574bbe9 (patch)
treef116548be832ae6786449dd6f1257865efe38026 /std/log/mod_test.ts
parentca1c2ee82207f2ead857ab4aeca48edff16827ae (diff)
make std deno-lint clean (#6240)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
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);