diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-06 14:19:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-06 14:19:15 -0500 |
| commit | c164e696d7f924fe785421058d834934b7014429 (patch) | |
| tree | 90af4dd0f6f5bd2e3149c8af1f8fc8b1247d03dc /logging/test.ts | |
| parent | 68584f983e4b1cf81d84cdb57bb5459127293cd2 (diff) | |
Fix format globs (denoland/deno_std#87)
Original: https://github.com/denoland/deno_std/commit/297cf0975eca194a677e6fadd7d753d62eb453c3
Diffstat (limited to 'logging/test.ts')
| -rw-r--r-- | logging/test.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/logging/test.ts b/logging/test.ts index a3c0b7199..17117ae8b 100644 --- a/logging/test.ts +++ b/logging/test.ts @@ -23,7 +23,6 @@ test(function testDefaultlogMethods() { log.error("Foobar"); log.critical("Foobar"); - const logger = log.getLogger(''); + const logger = log.getLogger(""); console.log(logger); }); - |
