Bart De Smet пре 6 година
родитељ
комит
eb98b21b84
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      Ix.NET/Source/System.Linq.Async.Tests/System/Linq/Operators/Throw.cs

+ 2 - 1
Ix.NET/Source/System.Linq.Async.Tests/System/Linq/Operators/Throw.cs

@@ -3,6 +3,7 @@
 // See the LICENSE file in the project root for more information. 
 
 using System;
+using System.Threading.Tasks;
 using Xunit;
 
 namespace Tests
@@ -16,7 +17,7 @@ namespace Tests
         }
 
         [Fact]
-        public async System.Threading.Tasks.Task Throw1Async()
+        public async Task Throw_Simple()
         {
             var ex = new Exception("Bang");
             var xs = Throw<int>(ex);