Merge pull request #1412 from esdrubal/stackframe
[mono.git] / mcs / class / System.Net.Http / Test / System.Net.Http / StringContentTest.cs
index 51a077176b8d470b80b24ef6397f4b3c02e91b56..f031fc3ea8eb9ef10a863e023744cb0efdc76cc2 100644 (file)
@@ -61,9 +61,10 @@ namespace MonoTests.System.Net.Http
 
                        var s = new StringContent ("aaa", null, "multipart/*");
                        Assert.AreEqual ("Content-Type: multipart/*; charset=utf-8\r\n", s.Headers.ToString ());
-
+#if !MOBILE
                        s = new StringContent ("aaa", Encoding.GetEncoding (852), "multipart/*");
                        Assert.AreEqual ("Content-Type: multipart/*; charset=ibm852\r\n", s.Headers.ToString ());
+#endif
                }
 
                [Test]