Skip to content

Commit

Permalink
chore(log): ignore missing await in console test
Browse files Browse the repository at this point in the history
  • Loading branch information
gabeidx authored and Gabe committed Jul 30, 2022
1 parent 58835c0 commit 79d14a3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions log/handlers/console_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<number> {
this.buffer = data;
return data.buffer.byteLength;
Expand Down

0 comments on commit 79d14a3

Please sign in to comment.