Skip to content

Commit

Permalink
try to fix windows failure (nodejs#2950)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag authored and KhafraDev committed Mar 14, 2024
1 parent b62d4b6 commit 318f3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/client-request.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ test('request dump big', async (t) => {
while (res.write('asd')) {
// Do nothing...
}
res.on('drain', () => t.fail())
})
after(() => server.close())

Expand All @@ -39,6 +38,7 @@ test('request dump big', async (t) => {
method: 'GET'
}, (err, { body }) => {
t.ifError(err)
body.on('data', () => t.fail())
body.dump().then(() => {
dumped = true
t.ok(true, 'pass')
Expand Down

0 comments on commit 318f3d3

Please sign in to comment.