Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 596522b

Browse files
Removing unused test
1 parent b87d2c2 commit 596522b

File tree

1 file changed

+0
-15
lines changed
  • src/tests/TaskSystemIntegrationTests

1 file changed

+0
-15
lines changed

src/tests/TaskSystemIntegrationTests/Tests.cs

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -570,21 +570,6 @@ public async Task ExceptionPropagatesOutIfNoFinally()
570570
await task.StartAsAsync();
571571
}
572572

573-
//[Test]
574-
//[Ignore("borked")]
575-
[ExpectedException(typeof(InvalidOperationException))]
576-
public async Task DeferExceptions()
577-
{
578-
var task = new FuncTask<int>(Token, _ => 1)
579-
.Defer<int>(async d =>
580-
{
581-
throw new InvalidOperationException();
582-
return await TaskEx.FromResult(d);
583-
})
584-
.Then(_ => { });
585-
await task.StartAsAsync();
586-
}
587-
588573
[Test]
589574
public async Task StartAsyncWorks()
590575
{

0 commit comments

Comments
 (0)