Skip to content

Commit e30eb5d

Browse files
bartelinkabelbraaksma
authored andcommitted
Address warning
1 parent 241f711 commit e30eb5d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/FSharp.Control.TaskSeq.Test/TaskSeq.MaxMin.Tests.fs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ module SideSeffects =
296296
}
297297

298298
[<Theory; ClassData(typeof<JustMinMaxBy>)>]
299-
let ``TaskSeq-minBy, maxBy with sequence that changes length`` (minMax: MinMax) = task {
299+
let ``TaskSeq-minBy, maxBy with sequence that changes length`` (minMax: MinMax) =
300300
let mutable i = 0
301301

302302
let ts = taskSeq {
@@ -311,7 +311,8 @@ module SideSeffects =
311311
else
312312
minMaxFn id ts |> Task.map (should equal v)
313313

314-
do! test (MinMax.getByFunction minMax) 10
315-
do! test (MinMax.getByFunction minMax) 20
316-
do! test (MinMax.getByFunction minMax) 30
317-
}
314+
task {
315+
do! test (MinMax.getByFunction minMax) 10
316+
do! test (MinMax.getByFunction minMax) 20
317+
do! test (MinMax.getByFunction minMax) 30
318+
}

0 commit comments

Comments
 (0)