Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: remove space in paren for lint
removed excess spaces from line 9
  • Loading branch information
Jason Wilson committed Feb 23, 2017
commit 49e528dde159af31059e489a8db0e53a89507559
2 changes: 1 addition & 1 deletion test/parallel/test-zlib-write-after-close.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ const zlib = require('zlib');
zlib.gzip('hello', common.mustCall(function(err, out) {
const unzip = zlib.createGunzip();
unzip.close(common.mustCall(function() {}));
assert.throws( () => unzip.write(out), /^Error: zlib binding closed$/ );
assert.throws(() => unzip.write(out), /^Error: zlib binding closed$/);
}));