浏览代码

Clean up tests for Throw.

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);