diff options
Diffstat (limited to 'cli/tests/unit/http_test.ts')
-rw-r--r-- | cli/tests/unit/http_test.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/tests/unit/http_test.ts b/cli/tests/unit/http_test.ts index 77af953e9..94c7ac887 100644 --- a/cli/tests/unit/http_test.ts +++ b/cli/tests/unit/http_test.ts @@ -5,8 +5,6 @@ import { assertThrowsAsync, unitTest, } from "./test_util.ts"; -import { BufReader, BufWriter } from "../../../test_util/std/io/bufio.ts"; -import { TextProtoReader } from "../../../test_util/std/textproto/mod.ts"; unitTest({ perms: { net: true } }, async function httpServerBasic() { const promise = (async () => { @@ -178,7 +176,7 @@ unitTest( const httpConn = Deno.serveHttp(conn); const evt = await httpConn.nextRequest(); assert(evt); - const { request, respondWith } = evt; + const { respondWith } = evt; await respondWith(new Response("Hello World")); // TODO(ry) If we don't call httpConn.nextRequest() here we get "error sending |