summaryrefslogtreecommitdiff
path: root/std/log/logger_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/log/logger_test.ts')
-rw-r--r--std/log/logger_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/log/logger_test.ts b/std/log/logger_test.ts
index 1c02dbb1a..44b0edd06 100644
--- a/std/log/logger_test.ts
+++ b/std/log/logger_test.ts
@@ -19,7 +19,7 @@ class TestHandler extends BaseHandler {
}
}
-test(function simpleLogger(): void {
+test("simpleLogger", function (): void {
const handler = new TestHandler("DEBUG");
let logger = new Logger("DEBUG");
@@ -32,7 +32,7 @@ test(function simpleLogger(): void {
assertEquals(logger.handlers, [handler]);
});
-test(function customHandler(): void {
+test("customHandler", function (): void {
const handler = new TestHandler("DEBUG");
const logger = new Logger("DEBUG", [handler]);
@@ -47,7 +47,7 @@ test(function customHandler(): void {
assertEquals(handler.messages, ["DEBUG foo"]);
});
-test(function logFunctions(): void {
+test("logFunctions", function (): void {
const doLog = (level: LevelName): TestHandler => {
const handler = new TestHandler(level);
const logger = new Logger(level, [handler]);