diff options
Diffstat (limited to 'std/textproto/reader_test.ts')
-rw-r--r-- | std/textproto/reader_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/std/textproto/reader_test.ts b/std/textproto/reader_test.ts index 7aead064b..f0ae63894 100644 --- a/std/textproto/reader_test.ts +++ b/std/textproto/reader_test.ts @@ -21,9 +21,10 @@ function reader(s: string): TextProtoReader { test({ ignore: true, name: "[textproto] Reader : DotBytes", - async fn(): Promise<void> { + fn(): Promise<void> { const _input = "dotlines\r\n.foo\r\n..bar\n...baz\nquux\r\n\r\n.\r\nanot.her\r\n"; + return Promise.resolve(); } }); |