summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeau Gunderson <beau@beaugunderson.com>2014-11-29 15:54:00 -0800
committerBeau Gunderson <beau@beaugunderson.com>2014-12-18 09:42:04 -0800
commit54d2da53b76aa1a181777761acb14da9a80f9b49 (patch)
tree855f20e8c75726113387c1511d133897e85d69d6
parentcaa24adb1a2cdabbcc8b77cf5f6ce464931ceda6 (diff)
downloadasync-54d2da53b76aa1a181777761acb14da9a80f9b49.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],