浏览代码

Merge branch 'testfix2'

Eric Rozell 10 年之前
父节点
当前提交
8a4e95b1f8
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      Ix.NET/Source/Tests/AsyncTests.Conversions.cs

+ 3 - 3
Ix.NET/Source/Tests/AsyncTests.Conversions.cs

@@ -97,7 +97,7 @@ namespace Tests
         }
 
         [TestMethod]
-        public async Task ToAsyncEnumerable_with_completed_task()
+        public void ToAsyncEnumerable_With_Completed_Task()
         {
             var task = Task.Factory.StartNew(() => 36);
 
@@ -110,7 +110,7 @@ namespace Tests
         }
 
         [TestMethod]
-        public async Task ToAsyncEnumerable_with_faulted_task()
+        public void ToAsyncEnumerable_With_Faulted_Task()
         {
             var ex = new InvalidOperationException();
             var tcs = new TaskCompletionSource<int>();
@@ -123,7 +123,7 @@ namespace Tests
         }
 
         [TestMethod]
-        public async Task ToAsyncEnumerable_with_canceled_task()
+        public void ToAsyncEnumerable_With_Canceled_Task()
         {
             var tcs = new TaskCompletionSource<int>();
             tcs.SetCanceled();