We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e03d91c commit ed2db82Copy full SHA for ed2db82
src/DotNext.Tests/Threading/Tasks/ValueTaskCompletionSourceTests.cs
@@ -61,7 +61,7 @@ public static async Task CompleteWithToken(bool runContinuationsAsynchronously)
61
var source = new ValueTaskCompletionSource(runContinuationsAsynchronously);
62
var completionToken = source.Reset();
63
var task = source.CreateTask(InfiniteTimeSpan, default);
64
- False(source.TrySetResult(short.MaxValue));
+ False(source.TrySetResult(completionData: null, short.MaxValue));
65
False(task.IsCompleted);
66
True(source.TrySetResult(completionToken));
67
await task;
0 commit comments