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
lint: space is required before arrow to pass lint test
  • Loading branch information
kotAPI committed Nov 21, 2018
commit 389c79af7a377c53e277e037f06c632b408fa769
2 changes: 1 addition & 1 deletion test/parallel/test-zlib-close-after-write.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
const common = require('../common');
const zlib = require('zlib');

zlib.gzip('hello', common.mustCall((err, out)=> {
zlib.gzip('hello', common.mustCall((err, out) => {
const unzip = zlib.createGunzip();
unzip.write(out);
unzip.close(common.mustCall());
Expand Down