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:
Diffstat (limited to 'mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs')
-rw-r--r--mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs b/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs
index 27d5bc4a35a..a5dae6dff27 100644
--- a/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml.Schema/XmlSchemaCollectionTests.cs
@@ -61,15 +61,15 @@ namespace MonoTests.System.Xml
col.Add (schema2);
}
- [Test]
- public void TestAddDoesCompilation ()
- {
- XmlSchema schema = new XmlSchema ();
- Assert (!schema.IsCompiled);
- XmlSchemaCollection col = new XmlSchemaCollection ();
- col.Add (schema);
- Assert (schema.IsCompiled);
- }
+ [Test]
+ public void TestAddDoesCompilation ()
+ {
+ XmlSchema schema = new XmlSchema ();
+ Assert (!schema.IsCompiled);
+ XmlSchemaCollection col = new XmlSchemaCollection ();
+ col.Add (schema);
+ Assert (schema.IsCompiled);
+ }
[Test] // bug #75126
public void TestGetEnumerator ()