Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
chronoxor committed Nov 27, 2020
1 parent 98155da commit 0e4789f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion performance/SslEchoClient/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ static void Main(string[] args)

// Wait for benchmarking
Console.Write("Benchmarking...");
Thread.Sleep(seconds * 6000 * 5);
Thread.Sleep(seconds * 1000);
Console.WriteLine("Done!");

// Disconnect clients
Expand Down
3 changes: 1 addition & 2 deletions tests/WsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void WsServerTest()
Assert.True(client.BytesReceived > 0);
Assert.True(!client.Errors);
}
/*

[Fact(DisplayName = "WebSocket server multicast test")]
public void WsServerMulticastTest()
{
Expand Down Expand Up @@ -352,6 +352,5 @@ public void WsServerRandomTest()
Assert.True(server.BytesReceived > 0);
Assert.True(!server.Errors);
}
*/
}
}
3 changes: 1 addition & 2 deletions tests/WssTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public void WssServerTest()
Assert.True(client.BytesReceived > 0);
Assert.True(!client.Errors);
}
/*

[Fact(DisplayName = "WebSocket secure server multicast test")]
public void WssServerMulticastTest()
{
Expand Down Expand Up @@ -382,6 +382,5 @@ public void WssServerRandomTest()
Assert.True(server.BytesReceived > 0);
Assert.True(!server.Errors);
}
*/
}
}

0 comments on commit 0e4789f

Please sign in to comment.