@@ -163,15 +163,15 @@ tape( 'the function returns a function (no options)', function test( t ) {
163163 function next ( value , clbk ) {
164164 clbk ( null , false ) ;
165165 }
166- t . strictEqual ( typeof factory ( next ) , 'function' , 'returns a function ' ) ;
166+ t . strictEqual ( typeof factory ( next ) , 'function' , 'returns expected value ' ) ;
167167 t . end ( ) ;
168168} ) ;
169169
170170tape ( 'the function returns a function (options)' , function test ( t ) {
171171 function next ( value , clbk ) {
172172 clbk ( null , false ) ;
173173 }
174- t . strictEqual ( typeof factory ( { } , next ) , 'function' , 'returns a function ' ) ;
174+ t . strictEqual ( typeof factory ( { } , next ) , 'function' , 'returns expected value ' ) ;
175175 t . end ( ) ;
176176} ) ;
177177
@@ -426,7 +426,7 @@ tape( 'the returned function invokes a predicate function once for each element
426426 } else {
427427 t . pass ( 'did not return an error' ) ;
428428 }
429- t . strictEqual ( bool , false , 'returns false ' ) ;
429+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
430430 t . end ( ) ;
431431 }
432432} ) ;
@@ -463,7 +463,7 @@ tape( 'the returned function invokes a predicate function once for each element
463463 } else {
464464 t . pass ( 'did not return an error' ) ;
465465 }
466- t . strictEqual ( bool , false , 'returns false ' ) ;
466+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
467467 t . end ( ) ;
468468 }
469469} ) ;
@@ -501,7 +501,7 @@ tape( 'the returned function invokes a predicate function once for each element
501501 } else {
502502 t . pass ( 'did not return an error' ) ;
503503 }
504- t . strictEqual ( bool , false , 'returns false ' ) ;
504+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
505505 t . end ( ) ;
506506 }
507507} ) ;
@@ -541,7 +541,7 @@ tape( 'if a predicate function accepts fewer than 2 arguments, the function retu
541541 } else {
542542 t . pass ( 'did not return an error' ) ;
543543 }
544- t . strictEqual ( bool , false , 'returns false ' ) ;
544+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
545545 t . end ( ) ;
546546 }
547547} ) ;
@@ -581,7 +581,7 @@ tape( 'if a predicate function length is 0, the function returns a function whic
581581 } else {
582582 t . pass ( 'did not return an error' ) ;
583583 }
584- t . strictEqual ( bool , false , 'returns false ' ) ;
584+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
585585 t . end ( ) ;
586586 }
587587} ) ;
@@ -616,7 +616,7 @@ tape( 'by default, the returned function processes collection elements concurren
616616 } else {
617617 t . pass ( 'did not return an error' ) ;
618618 }
619- t . strictEqual ( bool , false , 'returns false ' ) ;
619+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
620620 t . end ( ) ;
621621 }
622622} ) ;
@@ -655,7 +655,7 @@ tape( 'the function supports returning a function for processing collection elem
655655 } else {
656656 t . pass ( 'did not return an error' ) ;
657657 }
658- t . strictEqual ( bool , false , 'returns false ' ) ;
658+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
659659 t . end ( ) ;
660660 }
661661} ) ;
@@ -695,7 +695,7 @@ tape( 'the function supports returning a function for processing collection elem
695695 } else {
696696 t . pass ( 'did not return an error' ) ;
697697 }
698- t . strictEqual ( bool , false , 'returns false ' ) ;
698+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
699699 t . end ( ) ;
700700 }
701701} ) ;
@@ -735,7 +735,7 @@ tape( 'the function supports returning a function which limits the maximum numbe
735735 } else {
736736 t . pass ( 'did not return an error' ) ;
737737 }
738- t . strictEqual ( bool , false , 'returns false ' ) ;
738+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
739739 t . end ( ) ;
740740 }
741741} ) ;
@@ -774,7 +774,7 @@ tape( 'the function supports specifying an execution context for the predicate f
774774 } else {
775775 t . pass ( 'did not return an error' ) ;
776776 }
777- t . strictEqual ( bool , false , 'returns false ' ) ;
777+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
778778 t . end ( ) ;
779779 }
780780} ) ;
@@ -811,7 +811,7 @@ tape( 'if an error is encountered while processing a collection element, the ret
811811 } else {
812812 t . fail ( 'did not return an error' ) ;
813813 }
814- t . strictEqual ( bool , false , 'returns false ' ) ;
814+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
815815 t . end ( ) ;
816816 }
817817} ) ;
@@ -851,7 +851,7 @@ tape( 'if an error is encountered while processing a collection element, the ret
851851 } else {
852852 t . fail ( 'did not return an error' ) ;
853853 }
854- t . strictEqual ( bool , false , 'returns false ' ) ;
854+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
855855 t . end ( ) ;
856856 }
857857} ) ;
@@ -886,7 +886,7 @@ tape( 'if an error is encountered while processing a collection element, the ret
886886 } else {
887887 t . fail ( 'did not return an error' ) ;
888888 }
889- t . strictEqual ( bool , false , 'returns false ' ) ;
889+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
890890 t . end ( ) ;
891891 }
892892} ) ;
@@ -918,7 +918,7 @@ tape( 'if an error is encountered while processing a collection element, the ret
918918 } else {
919919 t . fail ( 'did not return an error' ) ;
920920 }
921- t . strictEqual ( bool , false , 'returns false ' ) ;
921+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
922922 t . end ( ) ;
923923 }
924924} ) ;
@@ -955,7 +955,7 @@ tape( 'if a predicate function returns `n` truthy results, the returned function
955955 } else {
956956 t . pass ( 'did not return an error' ) ;
957957 }
958- t . strictEqual ( bool , true , 'returns true ' ) ;
958+ t . strictEqual ( bool , true , 'returns expected value ' ) ;
959959 t . end ( ) ;
960960 }
961961} ) ;
@@ -995,7 +995,7 @@ tape( 'if a predicate function returns `n` truthy results, the returned function
995995 } else {
996996 t . pass ( 'did not return an error' ) ;
997997 }
998- t . strictEqual ( bool , true , 'returns true ' ) ;
998+ t . strictEqual ( bool , true , 'returns expected value ' ) ;
999999 t . end ( ) ;
10001000 }
10011001} ) ;
@@ -1030,7 +1030,7 @@ tape( 'if a predicate function returns `n` truthy results, the returned function
10301030 } else {
10311031 t . pass ( 'did not return an error' ) ;
10321032 }
1033- t . strictEqual ( bool , true , 'returns true ' ) ;
1033+ t . strictEqual ( bool , true , 'returns expected value ' ) ;
10341034 t . end ( ) ;
10351035 }
10361036} ) ;
@@ -1054,7 +1054,7 @@ tape( 'if provided an empty collection, the returned function never invokes a pr
10541054 } else {
10551055 t . pass ( 'did not return an error' ) ;
10561056 }
1057- t . strictEqual ( bool , false , 'returns false ' ) ;
1057+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
10581058 t . end ( ) ;
10591059 }
10601060} ) ;
@@ -1082,7 +1082,7 @@ tape( 'the returned function does not guarantee asynchronous execution', functio
10821082 } else {
10831083 t . pass ( 'did not return an error' ) ;
10841084 }
1085- t . strictEqual ( bool , false , 'returns false ' ) ;
1085+ t . strictEqual ( bool , false , 'returns expected value ' ) ;
10861086 t . strictEqual ( i , 0 , 'releases the zalgo' ) ;
10871087 t . end ( ) ;
10881088 }
0 commit comments