Skip to content

Commit 1181314

Browse files
committed
fixup! fixup! fixup! test: move http proxy tests to test/client-proxy
1 parent cd4dbdc commit 1181314

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/client-proxy/test-http-proxy-fetch.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { createProxyServer, checkProxiedFetch } from '../common/proxy-server.js'
77
// Start a server to process the final request.
88
const server = http.createServer(common.mustCall((req, res) => {
99
res.end('Hello world');
10-
}, 3));
10+
}, common.isWindows ? 2 : 3));
1111
server.on('error', common.mustNotCall((err) => { console.error('Server error', err); }));
1212
server.listen(0);
1313
await once(server, 'listening');

0 commit comments

Comments
 (0)