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:
authorLudovic Henry <ludovic@xamarin.com>2015-10-26 18:50:12 +0300
committerLudovic Henry <ludovic@xamarin.com>2015-10-26 18:50:25 +0300
commitf8ea0203569a071ba4d95b4f68ec1be537186877 (patch)
treef6056c7a135b3eb81142aa69502896c414048359 /mcs/class/System.Threading.Tasks.Dataflow
parentef164ac483a67dc0f92f467a7a187c8f297e4117 (diff)
[tests] Increase timeout before failing
Diffstat (limited to 'mcs/class/System.Threading.Tasks.Dataflow')
-rw-r--r--mcs/class/System.Threading.Tasks.Dataflow/Test/System.Threading.Tasks.Dataflow/BatchBlockTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.Threading.Tasks.Dataflow/Test/System.Threading.Tasks.Dataflow/BatchBlockTest.cs b/mcs/class/System.Threading.Tasks.Dataflow/Test/System.Threading.Tasks.Dataflow/BatchBlockTest.cs
index 41bb9b6ea8c..9812f1b6295 100644
--- a/mcs/class/System.Threading.Tasks.Dataflow/Test/System.Threading.Tasks.Dataflow/BatchBlockTest.cs
+++ b/mcs/class/System.Threading.Tasks.Dataflow/Test/System.Threading.Tasks.Dataflow/BatchBlockTest.cs
@@ -56,7 +56,7 @@ namespace MonoTests.System.Threading.Tasks.Dataflow {
Assert.IsNull (array);
Assert.IsTrue (buffer.Post (42));
- Assert.IsTrue (evt.Wait (100));
+ Assert.IsTrue (evt.Wait (1000));
Assert.IsNotNull (array);
CollectionAssert.AreEqual (new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 42 }, array);