summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {