Skip to content

Commit

Permalink
Extend UnexpectedTimeout for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Mar 26, 2020
1 parent 2b744b4 commit 760275e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nerdbank.Streams.Tests/TestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public abstract class TestBase : IDisposable
{
protected static readonly TimeSpan ExpectedTimeout = TimeSpan.FromMilliseconds(200);

protected static readonly TimeSpan UnexpectedTimeout = Debugger.IsAttached ? Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(5);
protected static readonly TimeSpan UnexpectedTimeout = Debugger.IsAttached ? Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);

private const bool WriteTestOutputToFile = false;

Expand Down

0 comments on commit 760275e

Please sign in to comment.