mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 22:09:02 -05:00
fix: change assertion in httpServerIncompleteMessage test (#12052)
This commit is contained in:
parent
3b30ba8031
commit
274ff6c469
1 changed files with 1 additions and 1 deletions
|
@ -848,7 +848,7 @@ unitTest(
|
||||||
|
|
||||||
listener.close();
|
listener.close();
|
||||||
|
|
||||||
assertEquals(errors.length, 2);
|
assert(errors.length >= 1);
|
||||||
for (const error of errors) {
|
for (const error of errors) {
|
||||||
assertEquals(error.name, "Http");
|
assertEquals(error.name, "Http");
|
||||||
assertEquals(
|
assertEquals(
|
||||||
|
|
Loading…
Reference in a new issue