Skip to content

Commit 20946c7

Browse files
committed
fix function name in tests
1 parent c4074f6 commit 20946c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test-python-shell.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('PythonShell', function () {
8585
it('should run multiple scripts and return output data for each of them', function (done) {
8686
var numberOfTimesToRun = 20;
8787
for (var i = 0; i < numberOfTimesToRun; i++) {
88-
runSingleErrorScript(end);
88+
runSingleScript(end);
8989
}
9090
var count = 0;
9191
function end() {
@@ -94,7 +94,7 @@ describe('PythonShell', function () {
9494
done();
9595
}
9696
}
97-
function runSingleErrorScript(callback) {
97+
function runSingleScript(callback) {
9898
PythonShell.run('echo_args.py', {
9999
args: ['hello', 'world']
100100
}, function (err, results) {

0 commit comments

Comments
 (0)