diff options
Diffstat (limited to 'std/log/logger_test.ts')
-rw-r--r-- | std/log/logger_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/log/logger_test.ts b/std/log/logger_test.ts index 3e8898afa..804591b4f 100644 --- a/std/log/logger_test.ts +++ b/std/log/logger_test.ts @@ -10,7 +10,7 @@ class TestHandler extends BaseHandler { public records: LogRecord[] = []; handle(record: LogRecord): void { - this.records.push({ ...record }); + this.records.push(record); super.handle(record); } |