Skip to content

Commit 8c58da8

Browse files
author
Terje Sandstrom
committed
fixed async error
1 parent 89ece83 commit 8c58da8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

TestUnitTestingAndTraitsWithNuGet/UnitTestProject1/AsyncMSTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using Microsoft.VisualStudio.TestTools.UnitTesting;
3+
using System.Threading.Tasks;
34

45
namespace MultiTest
56
{
@@ -8,7 +9,7 @@ public class AsyncMS
89
{
910
[TestCategory("Async")]
1011
[TestMethod]
11-
public async void AsyncTestMS1()
12+
public async Task AsyncTestMS1()
1213
{
1314
Assert.IsTrue(true);
1415
}

0 commit comments

Comments
 (0)