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/nist_dom/fundamental/CharacterData/CharacterData.cs')
-rwxr-xr-xmcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/CharacterData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/CharacterData.cs b/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/CharacterData.cs
index 84dc86e352d..f2b8377607b 100755
--- a/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/CharacterData.cs
+++ b/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/CharacterData.cs
@@ -1473,7 +1473,7 @@ namespace nist_dom.fundamental
string returnedValue = "";
System.Xml.XmlNode testNode = null;
System.Xml.XmlCharacterData testNodeData = null;
- string expectedValue = util.INDEX_SIZE_ERR;
+ string expectedValue = "System.ArgumentOutOfRangeException";//util.INDEX_SIZE_ERR;
testResults results = new testResults("Core0026C");
try
@@ -1495,7 +1495,7 @@ namespace nist_dom.fundamental
}
catch(System.Exception ex)
{
- computedValue = ex.Message;
+ computedValue = ex.GetType ().FullName;
}
}
catch(System.Exception ex)