diff options
author | 2023-10-21 01:28:17 +0200 | |
---|---|---|
committer | 2023-10-21 01:28:17 +0200 | |
commit | 7ab9a21d381818f61a149f589fd0549536e8f1e0 (patch) | |
tree | 613e42c0814dddd69506c28b419fe812ba05b73c | |
parent | 007c7f63bdffb743cb3a3d89e5314a8098c68c24 (diff) | |
download | bun-7ab9a21d381818f61a149f589fd0549536e8f1e0.tar.gz bun-7ab9a21d381818f61a149f589fd0549536e8f1e0.tar.zst bun-7ab9a21d381818f61a149f589fd0549536e8f1e0.zip |
Update test/js/node/http/node-http.test.ts
Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com>
-rw-r--r-- | test/js/node/http/node-http.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/http/node-http.test.ts b/test/js/node/http/node-http.test.ts index 0fcf4a255..fbe24a32b 100644 --- a/test/js/node/http/node-http.test.ts +++ b/test/js/node/http/node-http.test.ts @@ -814,7 +814,7 @@ MIIF0DCCA7igAwIBAgIIIhYaxu4khgAwDQYJKoZIhvcNAQENBQAwbDEkMCIGA1UE CgwbRmluYW5zaWV }); req.on("error", error => { - done(err); + done(error); }); req.write(JSON.stringify(requestData)); |