Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs')
-rw-r--r--src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs b/src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs
index 32af4cfe62..3ca33597da 100644
--- a/src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs
+++ b/src/SignalR/server/SignalR/test/HubConnectionHandlerTests.cs
@@ -1846,7 +1846,7 @@ public partial class HubConnectionHandlerTests : VerifiableLoggedTest
await Task.WhenAll(firstClient.Connected, secondClient.Connected).DefaultTimeout();
await secondClient.InvokeAsync(nameof(MethodHub.GroupAddMethod), "GroupA").DefaultTimeout();
- await firstClient.InvokeAsync(nameof(MethodHub.GroupAddMethod), "GroupB").DefaultTimeout(); ;
+ await firstClient.InvokeAsync(nameof(MethodHub.GroupAddMethod), "GroupB").DefaultTimeout();
var groupNames = new List<string> { "GroupA", "GroupB" };
await firstClient.SendInvocationAsync(nameof(MethodHub.SendToMultipleGroups), "test", groupNames).DefaultTimeout();