diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 18:49:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-23 18:49:46 -0500 |
| commit | 7143f7d86043c05f0b4a303a41c29ea90b87dc63 (patch) | |
| tree | 01641b145ee36d161e81e68466843f4f3e2c9985 /net/http_test.ts | |
| parent | 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (diff) | |
Make compatible with latest deno (denoland/deno_std#41)
Original: https://github.com/denoland/deno_std/commit/0772030f5d08c97744dc0d3d102dec437464bc28
Diffstat (limited to 'net/http_test.ts')
| -rw-r--r-- | net/http_test.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/http_test.ts b/net/http_test.ts index 97d07a5b4..93a8049e6 100644 --- a/net/http_test.ts +++ b/net/http_test.ts @@ -5,20 +5,19 @@ // Ported from // https://github.com/golang/go/blob/master/src/net/http/responsewrite_test.go +import { Buffer } from "deno"; import { test, assert, assertEqual } from "https://deno.land/x/testing/testing.ts"; - import { listenAndServe, ServerRequest, setContentLength, Response -} from "./http"; -import { Buffer } from "deno"; -import { BufWriter, BufReader } from "./bufio"; +} from "./http.ts"; +import { BufWriter, BufReader } from "./bufio.ts"; interface ResponseTest { response: Response; |
