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 abd4d84 commit a25e264Copy full SHA for a25e264
tests/specs/async/AsyncManagerSpec.cfc
@@ -251,7 +251,7 @@ component extends="BaseAsyncSpec" {
251
var f1 = asyncManager
252
.newFuture()
253
.run( function(){
254
- sleep( 1000 );
+ sleep( 2000 );
255
return "hello";
256
} );
257
var f2 = asyncManager
@@ -265,7 +265,7 @@ component extends="BaseAsyncSpec" {
265
266
it( "can process multiple closures in parallel via the anyOf() method", function(){
267
var f1 = function(){
268
269
270
};
271
var f2 = function(){
0 commit comments