summaryrefslogtreecommitdiff
path: root/test/node-report/test-fatal-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/node-report/test-fatal-error.js')
-rw-r--r--test/node-report/test-fatal-error.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/node-report/test-fatal-error.js b/test/node-report/test-fatal-error.js
index 3d830aa72f..b6cf792725 100644
--- a/test/node-report/test-fatal-error.js
+++ b/test/node-report/test-fatal-error.js
@@ -33,12 +33,6 @@ if (process.argv[2] === 'child') {
const reports = helper.findReports(child.pid, tmpdir.path);
assert.strictEqual(reports.length, 1);
const report = reports[0];
- const options = { pid: child.pid };
- // Node.js currently overwrites the command line on AIX
- // https://github.com/nodejs/node/issues/10607
- if (!(common.isAIX || common.isSunOS)) {
- options.commandline = child.spawnargs.join(' ');
- }
- helper.validate(report, options);
+ helper.validate(report);
}));
}