summaryrefslogtreecommitdiff
path: root/std/http/server_test.ts
diff options
context:
space:
mode:
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");