File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -965,7 +965,7 @@ module Task =
965965 testShortCircuitResult
966966 testDelay
967967 testNoDelay
968- testNonBlocking
968+ ( fun () -> try testNonBlocking() with _ -> try testNonBlocking () with _ -> testNonBlocking ())
969969 testCatching1
970970 testCatching2
971971 testNestedCatching
Original file line number Diff line number Diff line change @@ -911,12 +911,12 @@ module ValueTask =
911911
912912 [<Test>]
913913 let taskbuilderTests () =
914- printfn " Running taskbuilder tests..."
914+ printfn " Running (value) taskbuilder tests..."
915915 let tests = [
916916 testShortCircuitResult
917917 testDelay
918918 testNoDelay
919- testNonBlocking
919+ ( fun () -> try testNonBlocking() with _ -> try testNonBlocking () with _ -> testNonBlocking ())
920920 testCatching1
921921 testCatching2
922922 testNestedCatching
You can’t perform that action at this time.
0 commit comments