[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / corlib / Test / System.Text / UTF7EncodingTest.cs
index a115bc209f9678a983c73822f39e6f57a22d8a7f..3b112fc57dbd7932f696a171520b8aa1a07f4e3a 100644 (file)
@@ -260,17 +260,11 @@ namespace MonoTests.System.Text
                 }
         
                 [Test]
-#if NET_2_0
                 [Category ("NotWorking")]
-#endif
                 public void TestMaxByteCount()
                 {
                         UTF7Encoding UTF7enc = new UTF7Encoding ();
-#if NET_2_0
                         Assert.AreEqual (152, UTF7enc.GetMaxByteCount(50), "UTF #1");
-#else
-                        Assert.AreEqual (136, UTF7enc.GetMaxByteCount(50), "UTF #1");
-#endif
                 }
 
                [Test]