diff options
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 |