Skip to content

Commit a25e264

Browse files
committed
guaranteing async results
1 parent abd4d84 commit a25e264

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/specs/async/AsyncManagerSpec.cfc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ component extends="BaseAsyncSpec" {
251251
var f1 = asyncManager
252252
.newFuture()
253253
.run( function(){
254-
sleep( 1000 );
254+
sleep( 2000 );
255255
return "hello";
256256
} );
257257
var f2 = asyncManager
@@ -265,7 +265,7 @@ component extends="BaseAsyncSpec" {
265265

266266
it( "can process multiple closures in parallel via the anyOf() method", function(){
267267
var f1 = function(){
268-
sleep( 1000 );
268+
sleep( 2000 );
269269
return "hello";
270270
};
271271
var f2 = function(){

0 commit comments

Comments
 (0)