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

Commit 83d7da8

Browse files
committed
Wow VS 2015, go home, you're drunk
1 parent c439795 commit 83d7da8

File tree

1 file changed

+1
-1
lines changed
  • src/tests/TaskSystemIntegrationTests

1 file changed

+1
-1
lines changed

src/tests/TaskSystemIntegrationTests/Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1011,7 +1011,7 @@ public void DoesNotThrowIfItCanConvert()
10111011
public void FailingTasksThrowCorrectlyEvenIfFinallyIsPresent()
10121012
{
10131013
var queue = new TaskQueue();
1014-
var task = new ActionTask(Token, () => throw new Exception())
1014+
var task = new ActionTask(Token, () => { throw new Exception(); })
10151015
.Finally((s, e) => { });
10161016
queue.Queue(task);
10171017
Assert.Throws<Exception>(() => queue.RunSynchronously());

0 commit comments

Comments
 (0)