[System] Fix expected default value in test for ServicePointManager.ConnectionLimit...
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 14 Oct 2016 23:09:10 +0000 (01:09 +0200)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Fri, 14 Oct 2016 23:09:10 +0000 (01:09 +0200)
The default was aligned with XI on https://github.com/mono/mono/commit/d06354174070d01394f5e75ffcfc9c1110a1e7db

mcs/class/System/Test/System.Net/ServicePointManagerTest.cs

index b6808979e4a2d77c8cfce2252e67568d7466a333..c252d21b189bcd75d3c8b9cb2e94f621208fc838 100644 (file)
@@ -94,7 +94,7 @@ public class ServicePointManagerTest
                ServicePointManager.MaxServicePoints = 0;\r
                ServicePoint sp = ServicePointManager.FindServicePoint (googleUri, new WebProxy (apacheUri));\r
                Assert.AreEqual (apacheUri, sp.Address, "#1");\r
-#if MOBILE && !MONODROID\r
+#if MOBILE\r
                Assert.AreEqual (10, sp.ConnectionLimit, "#2");\r
 #else\r
                Assert.AreEqual (2, sp.ConnectionLimit, "#2");\r