瀏覽代碼

2009-09-02 Atsushi Enomoto <[email protected]>

	* JsonQueryStringConverterTest.cs : comment out one cosmetic case
	  that is not working under .NET.


svn path=/trunk/mcs/; revision=141099
Atsushi Eno 16 年之前
父節點
當前提交
ec2607604c

+ 5 - 0
mcs/class/System.ServiceModel.Web/Test/System.ServiceModel.Dispatcher/ChangeLog

@@ -1,3 +1,8 @@
+2009-09-02  Atsushi Enomoto  <[email protected]>
+
+	* JsonQueryStringConverterTest.cs : comment out one cosmetic case
+	  that is not working under .NET.
+
 2008-02-18  Atsushi Enomoto  <[email protected]>
 
 	* JsonQueryStringConverterTest.cs : new test.

+ 2 - 2
mcs/class/System.ServiceModel.Web/Test/System.ServiceModel.Dispatcher/JsonQueryStringConverterTest.cs

@@ -69,12 +69,12 @@ namespace MonoTests.System.ServiceModel.Description
 			Assert.IsTrue (c.CanConvert (typeof (Guid)), "#15");
 			Assert.IsTrue (c.CanConvert (typeof (XmlQualifiedName)), "#16");
 			Assert.IsTrue (c.CanConvert (typeof (object)), "#17");
-			Assert.IsFalse (c.CanConvert (typeof (QueryStringConverter)), "#18");
+			//Assert.IsFalse (c.CanConvert (typeof (QueryStringConverter)), "#18");
 			// TypeConverterAttribute does not help it.
 			Assert.IsFalse (c.CanConvert (typeof (MyConvertible)), "#19");
 		}
 
-		// ConvertStringToValue
+		// ConvertValueToString
 
 		[Test]
 		public void ConvertValueToStringValidCast ()