Skip to content

Commit

Permalink
Attempt to get test which passes locally but fails in CI to pass by e…
Browse files Browse the repository at this point in the history
…xtending timeout.
  • Loading branch information
Troy Willmot committed Oct 27, 2018
1 parent e8d3d26 commit 0a1f65d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Yort.Ntp.Net40.Tests/NtpClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void NtpClient_DefaultServer_GetsValidResponsesOverMultipleRequests()
for (int cnt = 0; cnt < 60; cnt++)
{
client.BeginRequestTime();
_GotResultSignal.WaitOne(1000);
_GotResultSignal.WaitOne(2000);
Assert.IsNotNull(_Result);
Assert.AreNotEqual(ntpEpoch, _Result);
}
Expand Down

0 comments on commit 0a1f65d

Please sign in to comment.