Skip to content

Commit b718aa0

Browse files
committed
fixup! lint
1 parent cf874a8 commit b718aa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-strace-openat-openssl.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ if (spawnSync('strace').error !== undefined) {
4545

4646
assert(allowedOpenCalls.delete(file), `${file} is not in the list of allowed openat calls`);
4747
});
48-
const debugOutput = []
48+
const debugOutput = [];
4949
strace.stderr.setEncoding('utf8');
5050
strace.stderr.on('data', (chunk) => {
51-
debugOutput.push(chunk.toString())
52-
})
51+
debugOutput.push(chunk.toString());
52+
});
5353
strace.on('error', common.mustNotCall());
5454
strace.on('exit', common.mustCall((code) => {
5555
assert.strictEqual(code, 0, debugOutput);

0 commit comments

Comments
 (0)