We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf874a8 commit b718aa0Copy full SHA for b718aa0
test/parallel/test-strace-openat-openssl.js
@@ -45,11 +45,11 @@ if (spawnSync('strace').error !== undefined) {
45
46
assert(allowedOpenCalls.delete(file), `${file} is not in the list of allowed openat calls`);
47
});
48
- const debugOutput = []
+ const debugOutput = [];
49
strace.stderr.setEncoding('utf8');
50
strace.stderr.on('data', (chunk) => {
51
- debugOutput.push(chunk.toString())
52
- })
+ debugOutput.push(chunk.toString());
+ });
53
strace.on('error', common.mustNotCall());
54
strace.on('exit', common.mustCall((code) => {
55
assert.strictEqual(code, 0, debugOutput);
0 commit comments