diff --git a/log/handlers/console_test.ts b/log/handlers/console_test.ts index 6c150df..d329e20 100644 --- a/log/handlers/console_test.ts +++ b/log/handlers/console_test.ts @@ -9,6 +9,7 @@ const { assertEquals, assertStringIncludes } = asserts; class TestWriter implements Deno.Writer { public buffer: Uint8Array = new Uint8Array(); + // deno-lint-ignore require-await async write(data: Uint8Array): Promise { this.buffer = data; return data.buffer.byteLength;