Skip to content

Commit e5f3f7d

Browse files
Async test was returning void instead of Task.
1 parent 61c187a commit e5f3f7d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Source/GitReleaseManager.Tests/ReleaseNotesBuilderIntegrationTests.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
// </copyright>
55
//-----------------------------------------------------------------------
66

7+
using System.Threading.Tasks;
8+
79
namespace GitReleaseManager.Tests
810
{
911
using System;
@@ -18,7 +20,7 @@ public class ReleaseNotesBuilderIntegrationTests
1820
{
1921
[Test]
2022
[Explicit]
21-
public async void SingleMilestone()
23+
public async Task SingleMilestone()
2224
{
2325
var gitHubClient = ClientBuilder.Build();
2426
var fileSystem = new FileSystem();
@@ -33,7 +35,7 @@ public async void SingleMilestone()
3335

3436
[Test]
3537
[Explicit]
36-
public async void SingleMilestone3()
38+
public async Task SingleMilestone3()
3739
{
3840
var gitHubClient = ClientBuilder.Build();
3941
var fileSystem = new FileSystem();

0 commit comments

Comments
 (0)