summaryrefslogtreecommitdiff
path: root/net/textproto_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-01-06 14:19:15 -0500
committerGitHub <noreply@github.com>2019-01-06 14:19:15 -0500
commitc164e696d7f924fe785421058d834934b7014429 (patch)
tree90af4dd0f6f5bd2e3149c8af1f8fc8b1247d03dc /net/textproto_test.ts
parent68584f983e4b1cf81d84cdb57bb5459127293cd2 (diff)
Fix format globs (denoland/deno_std#87)
Original: https://github.com/denoland/deno_std/commit/297cf0975eca194a677e6fadd7d753d62eb453c3
Diffstat (limited to 'net/textproto_test.ts')
-rw-r--r--net/textproto_test.ts6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/textproto_test.ts b/net/textproto_test.ts
index 9fe5e8dd3..e0ae0749c 100644
--- a/net/textproto_test.ts
+++ b/net/textproto_test.ts
@@ -6,11 +6,7 @@
import { BufReader } from "./bufio.ts";
import { TextProtoReader, append } from "./textproto.ts";
import { stringsReader } from "./util.ts";
-import {
- test,
- assert,
- assertEqual
-} from "../testing/mod.ts";
+import { test, assert, assertEqual } from "../testing/mod.ts";
function reader(s: string): TextProtoReader {
return new TextProtoReader(new BufReader(stringsReader(s)));