summaryrefslogtreecommitdiff
path: root/http/server_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-06-09 21:42:06 -0400
committerGitHub <noreply@github.com>2019-06-09 21:42:06 -0400
commit87d3b9b5cc3695402b2e316c39384fabd7e5874a (patch)
treecf34a91eb1ffe061ee410081dc9027a95401e1cd /http/server_test.ts
parent2e0ab295a34229f7d858d1ef916d294779a764d7 (diff)
upgrade: deno to v0.8.0 (denoland/deno_std#487)
Original: https://github.com/denoland/deno_std/commit/86b7499e658a70d734e1e02fef50e1d9e26f6f56
Diffstat (limited to 'http/server_test.ts')
-rw-r--r--http/server_test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/http/server_test.ts b/http/server_test.ts
index 2a6163d91..b58523787 100644
--- a/http/server_test.ts
+++ b/http/server_test.ts
@@ -396,7 +396,8 @@ test(async function testReadRequestError(): Promise<void> {
for (const test of testCases) {
const reader = new BufReader(new StringReader(test.in));
let err;
- let req;
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ let req: any;
try {
req = await readRequest(reader);
} catch (e) {