Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Nov 13, 2021
1 parent 92d6aa6 commit 99a5a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-stream-writable-aborted.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ const { Writable } = require('stream');
}

{
const writable = new writable({
const writable = new Writable({
read() {
}
});
assert.strictEqual(writable.writableAborted, false);
writable.end();
writable.destroy()
writable.destroy();
assert.strictEqual(writable.writableAborted, true);
}

0 comments on commit 99a5a87

Please sign in to comment.