Skip to content

Commit d29bfbe

Browse files
committed
Extend test timeout
We have a test failing in 8 seconds when the timeout was set to 10. Trying 15 in an effort to give the tests enough time.
1 parent c9c1f37 commit d29bfbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Microsoft.VisualStudio.Threading.Tests/TestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public abstract class TestBase
2020
/// The maximum length of time to wait for something that we expect will happen
2121
/// within the timeout.
2222
/// </summary>
23-
protected static readonly TimeSpan UnexpectedTimeout = Debugger.IsAttached ? Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
23+
protected static readonly TimeSpan UnexpectedTimeout = Debugger.IsAttached ? Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(15);
2424

2525
/// <summary>
2626
/// The maximum length of time to wait for something that we do not expect will happen

0 commit comments

Comments
 (0)