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
diff options
context:
space:
mode:
authorGert Driesen <drieseng@users.sourceforge.net>2005-12-28 17:56:22 +0300
committerGert Driesen <drieseng@users.sourceforge.net>2005-12-28 17:56:22 +0300
commit94c0b8b885c0d6837849896d6d14083a68485e04 (patch)
treef3a71f9339358da08ec5dc1ee8a75214652004d2 /mcs/class/System.XML
parentd971265f2a10ee7d4726f29afbfc17b686e9bcac (diff)
* XmlSchemaExporterTests.cs: Correct mistake.
svn path=/trunk/mcs/; revision=54900
Diffstat (limited to 'mcs/class/System.XML')
-rw-r--r--mcs/class/System.XML/Test/System.Xml.Serialization/XmlSchemaExporterTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml.Serialization/XmlSchemaExporterTests.cs b/mcs/class/System.XML/Test/System.Xml.Serialization/XmlSchemaExporterTests.cs
index d77dd19a5a3..b40bf91b978 100644
--- a/mcs/class/System.XML/Test/System.Xml.Serialization/XmlSchemaExporterTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml.Serialization/XmlSchemaExporterTests.cs
@@ -190,7 +190,7 @@ namespace MonoTests.System.XmlSerialization
XmlReflectionImporter ri = new XmlReflectionImporter ("NSPrimGuid");
XmlSchemas schemas = new XmlSchemas ();
XmlSchemaExporter sx = new XmlSchemaExporter (schemas);
- XmlTypeMapping tm = ri.ImportTypeMapping (typeof (int));
+ XmlTypeMapping tm = ri.ImportTypeMapping (typeof (Guid));
sx.ExportTypeMapping (tm);
Assert.AreEqual (2, schemas.Count, "#1");