Skip to content
Merged
Show file tree
Hide file tree
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
Next Next commit
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 <info@bnoordhuis.nl>
Reviewed-By: Roman Reiss <me@silverwind.io>
  • Loading branch information
muddletoes authored and Fishrock123 committed Aug 19, 2015
commit a3160c0a33d726da8b6c9f6a8f0b23530a077704
4 changes: 2 additions & 2 deletions test/sequential/test-stdin-from-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var common = require('../common');
var assert = require('assert');
var join = require('path').join;
var childProccess = require('child_process');
var childProcess = require('child_process');
var fs = require('fs');

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

fs.writeFileSync(tmpFile, string);

childProccess.exec(cmd, function(err, stdout, stderr) {
childProcess.exec(cmd, function(err, stdout, stderr) {
fs.unlinkSync(tmpFile);

if (err) throw err;
Expand Down
4 changes: 2 additions & 2 deletions test/sequential/test-stdout-to-file.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var common = require('../common');
var assert = require('assert');
var path = require('path');
var childProccess = require('child_process');
var childProcess = require('child_process');
var fs = require('fs');

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

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

childProccess.exec(cmd, function(err) {
childProcess.exec(cmd, function(err) {
if (err) throw err;

console.log('done!');
Expand Down