Skip to content

Commit

Permalink
attempt 4
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAngryByrd committed Apr 7, 2024
1 parent 893455f commit cb4de44
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/IcedTasks.Tests/CancellablePoolingValueTaskTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,7 @@ module CancellablePoolingValueTaskTests =
// so we can see if they are sequenced or not
let fakeWork1 l =
cancellablePoolingValueTask {
do! Task.Delay 15
let! x = fakeWork 1 10000 l
do! Task.Delay 15
return x
Expand Down
1 change: 1 addition & 0 deletions tests/IcedTasks.Tests/CancellableTaskTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,7 @@ module CancellableTaskTests =
// so we can see if they are sequenced or not
let fakeWork1 l =
cancellableTask {
do! Task.Delay 15
let! x = fakeWork 1 10000 l
do! Task.Delay 15
return x
Expand Down
1 change: 1 addition & 0 deletions tests/IcedTasks.Tests/CancellableValueTaskTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -974,6 +974,7 @@ module CancellableValueTaskTests =
// so we can see if they are sequenced or not
let fakeWork1 l =
cancellableValueTask {
do! Task.Delay 15
let! x = fakeWork 1 10000 l
do! Task.Delay 15
return x
Expand Down
1 change: 1 addition & 0 deletions tests/IcedTasks.Tests/PoolingValueTaskTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,7 @@ module PoolingValueTaskTests =
// so we can see if they are sequenced or not
let fakeWork1 l =
poolingValueTask {
do! Task.Delay 15
let! x = fakeWork 1 10000 l
do! Task.Delay 15
return x
Expand Down
1 change: 1 addition & 0 deletions tests/IcedTasks.Tests/TaskTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,7 @@ module TaskTests =
// so we can see if they are sequenced or not
let fakeWork1 l =
task {
do! Task.Delay 15
let! x = fakeWork 1 10000 l
do! Task.Delay 15
return x
Expand Down
1 change: 1 addition & 0 deletions tests/IcedTasks.Tests/ValueTaskTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ module ValueTaskTests =
// so we can see if they are sequenced or not
let fakeWork1 l =
valueTask {
do! Task.Delay 15
let! x = fakeWork 1 10000 l
do! Task.Delay 15
return x
Expand Down

0 comments on commit cb4de44

Please sign in to comment.