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:
authorAtsushi Eno <atsushieno@gmail.com>2004-05-13 11:24:57 +0400
committerAtsushi Eno <atsushieno@gmail.com>2004-05-13 11:24:57 +0400
commit02fb9f05e27c11f6cf806e31502d5f9f073d3d6a (patch)
treeef24c6e6d408d452878b625ba9bf607e17268207 /mcs/class/System.XML/Test/System.Xml/nist_dom
parente7849a7aea409ad5cb344d56e77f3f2cfeae40dc (diff)
2004-05-13 Atsushi Enomoto <atsushi@ximian.com>
* CharacterData.cs : More don't check error message. svn path=/trunk/mcs/; revision=27237
Diffstat (limited to 'mcs/class/System.XML/Test/System.Xml/nist_dom')
-rwxr-xr-xmcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/ChangeLog4
-rwxr-xr-xmcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/CharacterData.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/ChangeLog b/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/ChangeLog
index 70cac92324f..0628a711dad 100755
--- a/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/ChangeLog
+++ b/mcs/class/System.XML/Test/System.Xml/nist_dom/fundamental/CharacterData/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-13 Atsushi Enomoto <atsushi@ximian.com>
+
+ * CharacterData.cs : More don't check error message.
+
2004-04-24 Atsushi Enomoto <atsushi@ximian.com>
* CharacterData.cs : Don't check locale-dependent message.
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)