Sfoglia il codice sorgente

Task.Run already starts the task, calling .Start() throws an error

Brendan Forster 9 anni fa
parent
commit
3af56a49fd

+ 1 - 1
Rx.NET/Source/Tests.System.Reactive/Tests/Linq/ObservableBlockingTest.cs

@@ -1178,7 +1178,7 @@ namespace ReactiveTests.Tests
                     obs.OnNext(1);
                     evt.WaitOne();
                     obs.OnError(ex);
-                }).Start();
+                });
 
                 return () => { };
             });