From 8815926c4499e15deac5d84f3528bab8e3e0d84a Mon Sep 17 00:00:00 2001 From: Mary Marchini Date: Thu, 6 Aug 2020 18:58:41 -0700 Subject: [PATCH] (force failing test, remove commit before landing) --- test/parallel/test-http-outgoing-finish-writable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-http-outgoing-finish-writable.js b/test/parallel/test-http-outgoing-finish-writable.js index e3c870164bac58..61c5cfa98234a6 100644 --- a/test/parallel/test-http-outgoing-finish-writable.js +++ b/test/parallel/test-http-outgoing-finish-writable.js @@ -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