diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-10-06 01:02:34 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-05 12:02:34 -0400 |
commit | 96fe2d10a4da0521b7cd72d90fd42121f9311978 (patch) | |
tree | cb4d5ecafa55a3a522cf0ad9d742fb6a1e1f2283 /http/racing_server_test.ts | |
parent | 2f90225c89926932a34eb40758e2af0d1742e1f8 (diff) |
Update eslint and @typescript-eslint (denoland/deno_std#621)
Original: https://github.com/denoland/deno_std/commit/c3fe858f98565edbe8faeb3cf2e5b873304f4f6e
Diffstat (limited to 'http/racing_server_test.ts')
-rw-r--r-- | http/racing_server_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http/racing_server_test.ts b/http/racing_server_test.ts index a6534861e..b66986247 100644 --- a/http/racing_server_test.ts +++ b/http/racing_server_test.ts @@ -21,7 +21,7 @@ function killServer(): void { server.stdout!.close(); } -let input = `GET / HTTP/1.1 +const input = `GET / HTTP/1.1 GET / HTTP/1.1 @@ -31,7 +31,7 @@ GET / HTTP/1.1 `; const HUGE_BODY_SIZE = 1024 * 1024; -let output = `HTTP/1.1 200 OK +const output = `HTTP/1.1 200 OK content-length: 8 Hello 1 |