summaryrefslogtreecommitdiff
path: root/test/files/jvm
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-06-01 15:44:16 +0000
committerburaq <buraq@epfl.ch>2004-06-01 15:44:16 +0000
commit989713ac2673e1099c612c86ff01120e326c1db3 (patch)
tree434692dcc92e406e63c48f3e1ea664ba616dd09e /test/files/jvm
parentaefc959799de3be042dcc6aeed2336ec6b70018b (diff)
downloadscala-989713ac2673e1099c612c86ff01120e326c1db3.tar.gz
scala-989713ac2673e1099c612c86ff01120e326c1db3.tar.bz2
scala-989713ac2673e1099c612c86ff01120e326c1db3.zip
equals method
Diffstat (limited to 'test/files/jvm')
-rw-r--r--test/files/jvm/xmlLiterals.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/jvm/xmlLiterals.scala b/test/files/jvm/xmlLiterals.scala
index 3b20525159..c45f2a1cd5 100644
--- a/test/files/jvm/xmlLiterals.scala
+++ b/test/files/jvm/xmlLiterals.scala
@@ -138,7 +138,7 @@ object Test {
// these are not equal as comments are valid XML Info items.
assertEquals( rows2, Elem("tr",e,Comment(" an XML comment "),ProcInstr("pinotext",None),ProcInstr("pi",Some("text"))));
- assertEquals( rows3, Elem("tr",e,Text(" a "),Comment(" an XML comment "),Text(" b "),ProcInstr("pinotext",None),Text(" c "),ProcInstr("pi",Some("text")),Text(" d ")));
+ assertEquals( rows3, Elem("tr",e,Text("a"),Comment(" an XML comment "),Text("b"),ProcInstr("pinotext",None),Text("c"),ProcInstr("pi",Some("text")),Text("d")));
}