summaryrefslogtreecommitdiff
path: root/std/http/io_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/http/io_test.ts')
-rw-r--r--std/http/io_test.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/std/http/io_test.ts b/std/http/io_test.ts
index 768a4ffe4..94c527e1b 100644
--- a/std/http/io_test.ts
+++ b/std/http/io_test.ts
@@ -193,6 +193,7 @@ test("parseHttpVersion", (): void => {
{ in: "HTTP/0.-1", err: true },
{ in: "HTTP/", err: true },
{ in: "HTTP/1,0", err: true },
+ { in: "HTTP/1.1000001", err: true },
];
for (const t of testCases) {
let r, err;