diff options
author | Luca Casonato <hello@lcas.dev> | 2022-04-22 15:36:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 15:36:02 +0200 |
commit | a158d866bb1d9d228a7b2d6c1a97cee8c309ab9d (patch) | |
tree | f6c8ea0583182c57aecc06f4485489a00ccf6233 | |
parent | 6fad5c33c9dd51a2cb2c1ba1be5312f46835b6c4 (diff) |
tests: unflake streaming compression tests (#14363)
-rw-r--r-- | cli/tests/unit/http_test.ts | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cli/tests/unit/http_test.ts b/cli/tests/unit/http_test.ts index c55c0372d..a27fcbc23 100644 --- a/cli/tests/unit/http_test.ts +++ b/cli/tests/unit/http_test.ts @@ -1254,7 +1254,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1359,7 +1359,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1413,7 +1413,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1464,7 +1464,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1518,7 +1518,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1575,7 +1575,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1632,7 +1632,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1686,7 +1686,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1745,7 +1745,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", @@ -1869,7 +1869,7 @@ Deno.test({ const url = `http://${hostname}:${port}/`; const cmd = [ "curl", - "-I", + "-i", "--request", "GET", "--url", |