@@ -158,7 +158,7 @@ module SideEffects =
158158 [<InlineData( false , true ) >]
159159 [<InlineData( true , false ) >]
160160 [<InlineData( true , true ) >]
161- let ``TaskSeq - takeWhileXXX prove it does not read beyond the failing yield`` ( inclusive , isAsync ) = task {
161+ let ``TaskSeq - takeWhile and variants prove it does not read beyond the failing yield`` ( inclusive , isAsync ) = task {
162162 let mutable x = 42 // for this test, the potential mutation should not actually occur
163163 let functionToTest = getFunction inclusive isAsync ((=) 42 )
164164
@@ -183,7 +183,7 @@ module SideEffects =
183183 [<InlineData( false , true ) >]
184184 [<InlineData( true , false ) >]
185185 [<InlineData( true , true ) >]
186- let ``TaskSeq - takeWhileXXX prove side effects are executed`` ( inclusive , isAsync ) = task {
186+ let ``TaskSeq - takeWhile and variants prove side effects are executed`` ( inclusive , isAsync ) = task {
187187 let mutable x = 41
188188 let functionToTest = getFunction inclusive isAsync ((>) 50 )
189189
@@ -254,7 +254,7 @@ module Other =
254254 [<InlineData( false , true ) >]
255255 [<InlineData( true , false ) >]
256256 [<InlineData( true , true ) >]
257- let ``TaskSeq - takeWhileXXX should exclude all items after predicate fails`` ( inclusive , isAsync ) =
257+ let ``TaskSeq - takeWhile and variants excludes all items after predicate fails`` ( inclusive , isAsync ) =
258258 let functionToTest = With.getFunction inclusive isAsync
259259
260260 [ 1 ; 2 ; 2 ; 3 ; 3 ; 2 ; 1 ]
@@ -267,7 +267,7 @@ module Other =
267267 [<InlineData( false , true ) >]
268268 [<InlineData( true , false ) >]
269269 [<InlineData( true , true ) >]
270- let ``TaskSeq - takeWhileXXX stops consuming after predicate fails`` ( inclusive , isAsync ) =
270+ let ``TaskSeq - takeWhile and variants stops consuming after predicate fails`` ( inclusive , isAsync ) =
271271 let functionToTest = With.getFunction inclusive isAsync
272272
273273 seq {
0 commit comments