@@ -385,7 +385,7 @@ asyncTest('Catching the Promise.all() of a collection that includes a' +
385
385
'rejected promise prevents unhandledRejection' , function ( done ) {
386
386
var e = new Error ( ) ;
387
387
onUnhandledFail ( done ) ;
388
- Promise . all ( [ Promise . reject ( e ) ] ) . then ( common . fail , function ( ) { } ) ;
388
+ Promise . all ( [ Promise . reject ( e ) ] ) . then ( common . fail , function ( ) { } ) ;
389
389
} ) ;
390
390
391
391
asyncTest (
@@ -401,7 +401,7 @@ asyncTest(
401
401
} ) ;
402
402
p = Promise . all ( [ p ] ) ;
403
403
process . nextTick ( function ( ) {
404
- p . then ( common . fail , function ( ) { } ) ;
404
+ p . then ( common . fail , function ( ) { } ) ;
405
405
} ) ;
406
406
}
407
407
) ;
@@ -455,7 +455,7 @@ asyncTest('Waiting for some combination of process.nextTick + promise' +
455
455
Promise . resolve ( ) . then ( function ( ) {
456
456
process . nextTick ( function ( ) {
457
457
Promise . resolve ( ) . then ( function ( ) {
458
- a . catch ( function ( ) { } ) ;
458
+ a . catch ( function ( ) { } ) ;
459
459
} ) ;
460
460
} ) ;
461
461
} ) ;
@@ -474,7 +474,7 @@ asyncTest('Waiting for some combination of process.nextTick + promise' +
474
474
Promise . resolve ( ) . then ( function ( ) {
475
475
process . nextTick ( function ( ) {
476
476
Promise . resolve ( ) . then ( function ( ) {
477
- a . catch ( function ( ) { } ) ;
477
+ a . catch ( function ( ) { } ) ;
478
478
} ) ;
479
479
} ) ;
480
480
} ) ;
@@ -494,7 +494,7 @@ asyncTest('Waiting for some combination of process.nextTick + promise ' +
494
494
Promise . resolve ( ) . then ( function ( ) {
495
495
process . nextTick ( function ( ) {
496
496
Promise . resolve ( ) . then ( function ( ) {
497
- a . catch ( function ( ) { } ) ;
497
+ a . catch ( function ( ) { } ) ;
498
498
} ) ;
499
499
} ) ;
500
500
} ) ;
@@ -514,7 +514,7 @@ asyncTest('Waiting for some combination of promise microtasks + ' +
514
514
process . nextTick ( function ( ) {
515
515
Promise . resolve ( ) . then ( function ( ) {
516
516
process . nextTick ( function ( ) {
517
- a . catch ( function ( ) { } ) ;
517
+ a . catch ( function ( ) { } ) ;
518
518
} ) ;
519
519
} ) ;
520
520
} ) ;
@@ -535,7 +535,7 @@ asyncTest(
535
535
process . nextTick ( function ( ) {
536
536
Promise . resolve ( ) . then ( function ( ) {
537
537
process . nextTick ( function ( ) {
538
- a . catch ( function ( ) { } ) ;
538
+ a . catch ( function ( ) { } ) ;
539
539
} ) ;
540
540
} ) ;
541
541
} ) ;
@@ -556,7 +556,7 @@ asyncTest('Waiting for some combination of promise microtasks +' +
556
556
process . nextTick ( function ( ) {
557
557
Promise . resolve ( ) . then ( function ( ) {
558
558
process . nextTick ( function ( ) {
559
- a . catch ( function ( ) { } ) ;
559
+ a . catch ( function ( ) { } ) ;
560
560
} ) ;
561
561
} ) ;
562
562
} ) ;
0 commit comments