Skip to content

Commit a3160c0

Browse files
muddletoesFishrock123
authored andcommitted
test: correct spelling of 'childProcess'
Per: nodejs/node-v0.x-archive#8715 Cleans up a minor spelling error in two tests. PR-URL: #2389 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Roman Reiss <[email protected]>
1 parent 844d3f0 commit a3160c0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

test/sequential/test-stdin-from-file.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var common = require('../common');
33
var assert = require('assert');
44
var join = require('path').join;
5-
var childProccess = require('child_process');
5+
var childProcess = require('child_process');
66
var fs = require('fs');
77

88
var stdoutScript = join(common.fixturesDir, 'echo-close-check.js');
@@ -32,7 +32,7 @@ try {
3232

3333
fs.writeFileSync(tmpFile, string);
3434

35-
childProccess.exec(cmd, function(err, stdout, stderr) {
35+
childProcess.exec(cmd, function(err, stdout, stderr) {
3636
fs.unlinkSync(tmpFile);
3737

3838
if (err) throw err;

test/sequential/test-stdout-to-file.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
var common = require('../common');
33
var assert = require('assert');
44
var path = require('path');
5-
var childProccess = require('child_process');
5+
var childProcess = require('child_process');
66
var fs = require('fs');
77

88
var scriptString = path.join(common.fixturesDir, 'print-chars.js');
@@ -26,7 +26,7 @@ function test(size, useBuffer, cb) {
2626

2727
common.print(size + ' chars to ' + tmpFile + '...');
2828

29-
childProccess.exec(cmd, function(err) {
29+
childProcess.exec(cmd, function(err) {
3030
if (err) throw err;
3131

3232
console.log('done!');

0 commit comments

Comments
 (0)