diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-06-12 09:19:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 09:19:29 -0400 |
commit | d0970daacda0b6f6c2077c2f81948536b574bbe9 (patch) | |
tree | f116548be832ae6786449dd6f1257865efe38026 /std/log/mod_test.ts | |
parent | ca1c2ee82207f2ead857ab4aeca48edff16827ae (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.ts | 4 |
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); |