summaryrefslogtreecommitdiff
path: root/std/textproto/test.ts
diff options
context:
space:
mode:
authorSamrith Shankar <samrith-s@users.noreply.github.com>2020-03-20 14:38:34 +0100
committerGitHub <noreply@github.com>2020-03-20 09:38:34 -0400
commit798904b0f2ed0c7284b67bba2f125f406b5850de (patch)
tree5aba8d35aa8984aa778c894258bcaed56f1ce17c /std/textproto/test.ts
parent35f6e2e45ddb96524a6bdf54b0a6155caa88d5e0 (diff)
Add require-await lint rule (#4401)
Diffstat (limited to 'std/textproto/test.ts')
-rw-r--r--std/textproto/test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/textproto/test.ts b/std/textproto/test.ts
index 5b67bbf95..9a992a2cf 100644
--- a/std/textproto/test.ts
+++ b/std/textproto/test.ts
@@ -7,7 +7,7 @@ import { append } from "./mod.ts";
import { assertEquals } from "../testing/asserts.ts";
const { test } = Deno;
-test(async function textprotoAppend(): Promise<void> {
+test(function textprotoAppend(): void {
const enc = new TextEncoder();
const dec = new TextDecoder();
const u1 = enc.encode("Hello ");