Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manish.sinha@xamarin.com>2015-10-01 18:21:13 +0300
committerKyle White <kyle.white@xamarin.com>2015-12-16 21:36:02 +0300
commit2fa7c92c9147ba8efc70a378798e0505fe9e8a82 (patch)
tree5d3d10dcf5cf88dc8f7da51b3f89be9d53649047 /main/src/core/MonoDevelop.Ide
parent3bb001ac9ba0c8521b2bb035e68d4fe0921d7e00 (diff)
[AutoTest] Override timeout in WaitForTimerContext with the one provided
Diffstat (limited to 'main/src/core/MonoDevelop.Ide')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
index 085c1cba86..520fe124d8 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
@@ -378,7 +378,7 @@ namespace MonoDevelop.Components.AutoTest
{
AutoTestSession.TimerCounterContext context = session.CreateNewTimerContext (counterName);
action ();
- session.WaitForTimerContext (context);
+ session.WaitForTimerContext (context, timeout);
}
public XmlDocument ResultsAsXml (AppResult[] results)