summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeau Gunderson <beau@beaugunderson.com>2014-11-29 15:54:00 -0800
committerBeau Gunderson <beau@beaugunderson.com>2014-11-29 15:54:03 -0800
commita3a77e1fb62be36bbdc8356f9f2ea0d60e79dc9c (patch)
treef134237df302fad7865704da5b479e7371171f58
parent54364211d7f4acda1abd2bcea4c69c6528850d44 (diff)
downloadasync-a3a77e1fb62be36bbdc8356f9f2ea0d60e79dc9c.tar.gz
Remove errant debugger statements, fixes #563
-rwxr-xr-xtest/test-async.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test-async.js b/test/test-async.js
index 6a35606..50690fd 100755
--- a/test/test-async.js
+++ b/test/test-async.js
@@ -1996,7 +1996,6 @@ exports['doUntil'] = function (test) {
var count = 0;
async.doUntil(
function (cb) {
- debugger
call_order.push(['iterator', count]);
count++;
cb();
@@ -2024,7 +2023,6 @@ exports['doUntil callback params'] = function (test) {
var count = 0;
async.doUntil(
function (cb) {
- debugger
call_order.push(['iterator', count]);
count++;
cb(null, count);
@@ -2091,7 +2089,6 @@ exports['doWhilst'] = function (test) {
return (count < 5);
},
function (err) {
- debugger
test.same(call_order, [
['iterator', 0], ['test', 1],
['iterator', 1], ['test', 2],
@@ -2120,7 +2117,6 @@ exports['doWhilst callback params'] = function (test) {
return (c < 5);
},
function (err) {
- debugger
test.same(call_order, [
['iterator', 0], ['test', 1],
['iterator', 1], ['test', 2],