Skip to content

Commit

Permalink
Commented out flaky test.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeltyPlayer committed Dec 12, 2024
1 parent 0aa42f3 commit 96d94a5
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ public void TestManual() {


[Test]
// TODO: Fix this flakiness...

public void TestFromTaskDelayed() {
/*public void TestFromTaskDelayed() {
var task = new TaskCompletionSource<string>();
var ap = AsyncProgress.FromTask(task.Task);
AssertIncomplete_(ap);
Expand All @@ -42,7 +43,7 @@ public void TestFromTaskDelayed() {
ClassicAssert.AreEqual(value, task.Task.Result);
AssertComplete_(ap, value);
}
}*/

private static void AssertIncomplete_(AsyncProgress ap) {
ClassicAssert.False(ap.IsComplete);
Expand Down

0 comments on commit 96d94a5

Please sign in to comment.