Skip to content

Commit

Permalink
fix. FixTcp.OpenAndClose. (macOs)
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed Jun 30, 2024
1 parent 19415c1 commit 09c07ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tcp/FixTcp.SendAndReceive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void Server()

server.To.Open(host).Wait();

Thread.Sleep(millisecondsTimeout: 10);
Thread.Sleep(millisecondsTimeout: 20);
{
Assert.True(server.IsOpened);
Assert.True(isModify);
Expand All @@ -73,7 +73,7 @@ void Server()
Client(server.Host);
}

Thread.Sleep(1000);
Thread.Sleep(2000);

Assert.Equal(maxConnection, server.Clients.Length);
Assert.Equal(maxConnection, allDataReceived);
Expand Down

0 comments on commit 09c07ba

Please sign in to comment.