Merge pull request #172 from Oza94/fix-child-process-tests

fix random fails on tests that use child process
master
Jarrett Cruger 2015-09-17 18:46:57 -07:00
commit 394286cd16
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ vows.describe('nconf/hierarchy').addBatch({
data += d;
});
child.on('exit', function () {
child.on('close', function () {
fs.readFile(configFile, 'utf8', that.callback.bind(null, null, data));
});
},
@ -90,7 +90,7 @@ vows.describe('nconf/hierarchy').addBatch({
data += d;
});
child.on('exit', function() {
child.on('close', function() {
that.callback(null, data);
});
},