summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Early <alexander.early@gmail.com>2016-04-07 14:24:55 -0700
committerAlexander Early <alexander.early@gmail.com>2016-04-07 14:24:55 -0700
commitb40ece78ac5195cd010960ace46833a48d84d3db (patch)
tree3cdd8e2aebaf0af4f35ffdad258c99e9c00f865d
parentd1945e1774e216e96bef3213daf28962cd4d6430 (diff)
downloadasync-b40ece78ac5195cd010960ace46833a48d84d3db.tar.gz
fix flaky test
-rw-r--r--CHANGELOG.md2
-rw-r--r--mocha_test/detect.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e8d23bb..9179d0d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -49,7 +49,7 @@ Another theme is performance. We have eliminated internal deferrals in all cases
- Added `someSeries` and `everySeries` for symmetry, as well as a complete set of `any`/`anyLimit`/`anySeries` and `all`/`/allLmit`/`allSeries` aliases.
- Added `find` as an alias for `detect. (as well as `findLimit` and `findSeries`).
-- Various doc fixes (#1005, #1008, #1010, #1015, #1021, #1037)
+- Various doc fixes (#1005, #1008, #1010, #1015, #1021, #1037, #1102)
------------------------------------------
diff --git a/mocha_test/detect.js b/mocha_test/detect.js
index ddc86ce..f308485 100644
--- a/mocha_test/detect.js
+++ b/mocha_test/detect.js
@@ -107,7 +107,7 @@ describe("detect", function () {
setTimeout(function() {
expect(call_order).to.eql([2, 'callback', 3]);
done();
- }, 25);
+ }, 50);
});
it('detectLimit - multiple matches', function(done){
@@ -120,7 +120,7 @@ describe("detect", function () {
setTimeout(function(){
expect(call_order).to.eql([2, 'callback', 3]);
done();
- }, 25);
+ }, 50);
});
it('detectLimit - ensure stop', function (done) {