summaryrefslogtreecommitdiff
path: root/std/http/server_test.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2020-09-27 06:22:32 -0400
committerGitHub <noreply@github.com>2020-09-27 12:22:32 +0200
commitdf02e315075456f8d5f75472abbb1fa81e237827 (patch)
treed0dc9eb502d17f5bfd463bfd9162f46fead4e307 /std/http/server_test.ts
parentc28757f379fd1141c817b21ce2fe4dd86b29cd8c (diff)
feat(fmt): Sort named import and export specifiers (#7711)
Diffstat (limited to 'std/http/server_test.ts')
-rw-r--r--std/http/server_test.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/std/http/server_test.ts b/std/http/server_test.ts
index 564ec4e07..76b0bcff9 100644
--- a/std/http/server_test.ts
+++ b/std/http/server_test.ts
@@ -14,18 +14,18 @@ import {
assertThrowsAsync,
} from "../testing/asserts.ts";
import {
+ _parseAddrFromStr,
Response,
- ServerRequest,
- Server,
serve,
+ Server,
+ ServerRequest,
serveTLS,
- _parseAddrFromStr,
} from "./server.ts";
import { BufReader, BufWriter } from "../io/bufio.ts";
import { delay } from "../async/delay.ts";
-import { encode, decode } from "../encoding/utf8.ts";
+import { decode, encode } from "../encoding/utf8.ts";
import { mockConn } from "./_mock_conn.ts";
-import { resolve, dirname, join, fromFileUrl } from "../path/mod.ts";
+import { dirname, fromFileUrl, join, resolve } from "../path/mod.ts";
const moduleDir = dirname(fromFileUrl(import.meta.url));
const testdataDir = resolve(moduleDir, "testdata");