Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a3160c0

Browse filesBrowse 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 <info@bnoordhuis.nl> Reviewed-By: Roman Reiss <me@silverwind.io>
1 parent 844d3f0 commit a3160c0
Copy full SHA for a3160c0

File tree

Expand file treeCollapse file tree

2 files changed

+4
-4
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

2 files changed

+4
-4
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: test/sequential/test-stdin-from-file.js
+2-2Lines changed: 2 additions & 2 deletions
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;
Collapse file

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

Copy file name to clipboardExpand all lines: test/sequential/test-stdout-to-file.js
+2-2Lines changed: 2 additions & 2 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.