Skip to content

Commit

Permalink
(force failing test, remove commit before landing)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarchini committed Aug 7, 2020
1 parent d1360e7 commit 8815926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-http-outgoing-finish-writable.js
Expand Up @@ -9,7 +9,7 @@ const http = require('http');
const server = http.createServer(common.mustCall(function(req, res) {
assert.strictEqual(res.writable, true);
assert.strictEqual(res.finished, false);
assert.strictEqual(res.writableEnded, false);
assert.strictEqual(res.writableEnded, true);
res.end();

// res.writable is set to false after it has finished sending
Expand Down

0 comments on commit 8815926

Please sign in to comment.