summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorburaq <buraq@epfl.ch>2004-03-26 08:30:02 +0000
committerburaq <buraq@epfl.ch>2004-03-26 08:30:02 +0000
commit3657ec24dfe65480a62b693853a75e7565633f67 (patch)
treed061a07933d972b02d6533b539fca5a0fcfd235c /test/files/run
parentcf4fd3eeea95ed3e1021d2f4819e4a55efaa9ba5 (diff)
downloadscala-3657ec24dfe65480a62b693853a75e7565633f67.tar.gz
scala-3657ec24dfe65480a62b693853a75e7565633f67.tar.bz2
scala-3657ec24dfe65480a62b693853a75e7565633f67.zip
bugfix
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/xmlParsing_servlet.check6
-rw-r--r--test/files/run/xmlParsing_servlet.scala2
2 files changed, 6 insertions, 2 deletions
diff --git a/test/files/run/xmlParsing_servlet.check b/test/files/run/xmlParsing_servlet.check
index f716534829..ef35a97716 100644
--- a/test/files/run/xmlParsing_servlet.check
+++ b/test/files/run/xmlParsing_servlet.check
@@ -8,7 +8,11 @@
What follows is an example of modular formatting.
</p>
<p>
- <table align="center"><b>hallo</b></table>
+ <table align="center">
+ <tr>
+ <td color="#222255" bgcolor="#AAAAFF"><h1> message </h1></td>
+ </tr>
+ </table>
</p>
<hr></hr>
<p>
diff --git a/test/files/run/xmlParsing_servlet.scala b/test/files/run/xmlParsing_servlet.scala
index 50b641d394..d7416c824b 100644
--- a/test/files/run/xmlParsing_servlet.scala
+++ b/test/files/run/xmlParsing_servlet.scala
@@ -31,7 +31,7 @@ object Test {
/** applies beautify to every element in a sequence
*/
- def beautify( xs:Seq[Node] ):Seq[Node] = <b>hallo</b><i>Hwlt</i>;//xs.toList.map { beautify }
+ def beautify( xs:Seq[Node] ):Seq[Node] = xs.toList.map { beautify }
/** this is a recursive procedure that adds some attributes to the tree
*/