Removing Connected event from TestConnection (#1055)

This commit is contained in:
Mikael Mengistu 2017-10-24 23:23:56 -07:00 committed by GitHub
parent 30e7422407
commit eec6b4f2f5
1 changed files with 0 additions and 2 deletions

View File

@ -30,7 +30,6 @@ namespace Microsoft.AspNetCore.SignalR.Client.Tests
private TransferMode? _transferMode;
public event Func<Task> Connected;
public event Func<Exception, Task> Closed;
public Task Started => _started.Task;
@ -87,7 +86,6 @@ namespace Microsoft.AspNetCore.SignalR.Client.Tests
}
_started.TrySetResult(null);
Connected?.Invoke();
return Task.CompletedTask;
}