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
path: root/mcs
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-10-15 02:09:10 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-10-15 02:09:56 +0300
commitd6fdb0187ffd31b9f3caba7cba569f650e365c03 (patch)
treee72333d48c57202cd6553f51dd275b28bee1926f /mcs
parentc7ed10cd30e9197497236956bec62c282873b929 (diff)
[System] Fix expected default value in test for ServicePointManager.ConnectionLimit on XA
The default was aligned with XI on https://github.com/mono/mono/commit/d06354174070d01394f5e75ffcfc9c1110a1e7db (cherry picked from commit dcf4ddd097bf55e16f83fa8f1093c2cd4e369bf8)
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/System/Test/System.Net/ServicePointManagerTest.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System/Test/System.Net/ServicePointManagerTest.cs b/mcs/class/System/Test/System.Net/ServicePointManagerTest.cs
index b6808979e4a..c252d21b189 100644
--- a/mcs/class/System/Test/System.Net/ServicePointManagerTest.cs
+++ b/mcs/class/System/Test/System.Net/ServicePointManagerTest.cs
@@ -94,7 +94,7 @@ public class ServicePointManagerTest
ServicePointManager.MaxServicePoints = 0;
ServicePoint sp = ServicePointManager.FindServicePoint (googleUri, new WebProxy (apacheUri));
Assert.AreEqual (apacheUri, sp.Address, "#1");
-#if MOBILE && !MONODROID
+#if MOBILE
Assert.AreEqual (10, sp.ConnectionLimit, "#2");
#else
Assert.AreEqual (2, sp.ConnectionLimit, "#2");