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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreia Gaita <avidigal@novell.com>2007-01-23 20:34:48 +0300
committerAndreia Gaita <avidigal@novell.com>2007-01-23 20:34:48 +0300
commit5fb5a4687d9c0b1f83aeb51d06407a6d75e9692e (patch)
tree453f02f37f7b5f314bbd004333a16d86f3865468
parent626260e3846c4c46f0957df100932bc09219b1bc (diff)
* SendKeysTest.cs: wrong value for Interval, should be > 0
2007-01-23 Andreia Gaita <avidigal@novell.com> svn path=/trunk/mcs/; revision=71528
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog4
-rw-r--r--mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/SendKeysTest.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog
index bb586b55e52..5510dd4fc3c 100644
--- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/ChangeLog
@@ -1,5 +1,9 @@
2007-01-23 Andreia Gaita <avidigal@novell.com>
+ * SendKeysTest.cs: wrong value for Interval, should be > 0
+
+2007-01-23 Andreia Gaita <avidigal@novell.com>
+
* BindingTest.cs (BindingContextChangedTest2): Added 2.0-specific check,
was failing under ms.net.
diff --git a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/SendKeysTest.cs b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/SendKeysTest.cs
index 85af5b88111..43e32b4d4ed 100644
--- a/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/SendKeysTest.cs
+++ b/mcs/class/Managed.Windows.Forms/Test/System.Windows.Forms/SendKeysTest.cs
@@ -86,7 +86,7 @@ namespace MonoTests.System.Windows.Forms
SendKeys.SendWait("a");
t = new Timer();
- t.Interval = 0;
+ t.Interval = 1;
t.Tick +=new EventHandler(SendKeysTest1_tick);
t.Start();
@@ -134,7 +134,7 @@ namespace MonoTests.System.Windows.Forms
SendKeys.SendWait("+(abc){BACKSPACE 2}");
t = new Timer();
- t.Interval = 0;
+ t.Interval = 1;
t.Tick +=new EventHandler(SendKeysTest2_tick);
t.Start();