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:
authorRaja R Harinath <harinath@hurrynot.org>2009-06-30 19:15:39 +0400
committerRaja R Harinath <harinath@hurrynot.org>2009-06-30 19:15:39 +0400
commitb10bc254b9665558af7365b689ce79a7852c4cbb (patch)
tree017d14a4ce87f573e7eb151a4ebac56180be463d /mcs/class/System.XML/Test
parent82673840c5301e2b8cebe7acf28393279d9862dc (diff)
* XPathNavigatorTests.cs (XPathDocumentMoveToId) [!NET_2_0]: Fix compile.
svn path=/trunk/mcs/; revision=137152
Diffstat (limited to 'mcs/class/System.XML/Test')
-rw-r--r--mcs/class/System.XML/Test/System.Xml.XPath/ChangeLog5
-rw-r--r--mcs/class/System.XML/Test/System.Xml.XPath/XPathNavigatorTests.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/System.XML/Test/System.Xml.XPath/ChangeLog b/mcs/class/System.XML/Test/System.Xml.XPath/ChangeLog
index 4919e27a934..37c580d1784 100644
--- a/mcs/class/System.XML/Test/System.Xml.XPath/ChangeLog
+++ b/mcs/class/System.XML/Test/System.Xml.XPath/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-30 Raja R Harinath <harinath@hurrynot.org>
+
+ * XPathNavigatorTests.cs (XPathDocumentMoveToId) [!NET_2_0]:
+ Fix compile.
+
2009-06-26 Atsushi Enomoto <atsushi@ximian.com>
* SelectNodesTests.cs
diff --git a/mcs/class/System.XML/Test/System.Xml.XPath/XPathNavigatorTests.cs b/mcs/class/System.XML/Test/System.Xml.XPath/XPathNavigatorTests.cs
index c6048bed6cb..09ebe7ebc50 100644
--- a/mcs/class/System.XML/Test/System.Xml.XPath/XPathNavigatorTests.cs
+++ b/mcs/class/System.XML/Test/System.Xml.XPath/XPathNavigatorTests.cs
@@ -263,7 +263,7 @@ namespace MonoTests.System.Xml
// When it is XmlTextReader, XPathDocument fails.
XmlTextReader xtr = new XmlTextReader (xml, XmlNodeType.Document, null);
nav = new XPathDocument (xtr).CreateNavigator ();
- Assert.IsTrue ("ctor() from XmlTextReader", !nav.MoveToId ("aaa"), "#3");
+ Assert.IsTrue (!nav.MoveToId ("aaa"), "ctor() from XmlTextReader");
xtr.Close ();
#endif
}