We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4074f6 commit 20946c7Copy full SHA for 20946c7
test/test-python-shell.js
@@ -85,7 +85,7 @@ describe('PythonShell', function () {
85
it('should run multiple scripts and return output data for each of them', function (done) {
86
var numberOfTimesToRun = 20;
87
for (var i = 0; i < numberOfTimesToRun; i++) {
88
- runSingleErrorScript(end);
+ runSingleScript(end);
89
}
90
var count = 0;
91
function end() {
@@ -94,7 +94,7 @@ describe('PythonShell', function () {
94
done();
95
96
97
- function runSingleErrorScript(callback) {
+ function runSingleScript(callback) {
98
PythonShell.run('echo_args.py', {
99
args: ['hello', 'world']
100
}, function (err, results) {
0 commit comments