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
committerManish Sinha <manish.sinha@xamarin.com>2015-10-01 18:21:13 +0300
commit9791f24c923adb85e749187298d27649591c6ac6 (patch)
treefe24a5e060eaed59cc509320ccbc2350e0c27d46 /main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest
parent53db663b42cd37eaf0cfcdb4d558edb083fa4cd9 (diff)
[AutoTest] Override timeout in WaitForTimerContext with the one provided
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest')
-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 6edbd7c063..56047273c4 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AutoTest/AutoTestClientSession.cs
@@ -387,7 +387,7 @@ namespace MonoDevelop.Components.AutoTest
{
AutoTestSession.TimerCounterContext context = session.CreateNewTimerContext (counterName);
action ();
- session.WaitForTimerContext (context);
+ session.WaitForTimerContext (context, timeout);
}
public XmlDocument ResultsAsXml (AppResult[] results)