summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/xmlLiterals.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/xmlLiterals.scala b/test/files/run/xmlLiterals.scala
index f1483ffea7..63600f7962 100644
--- a/test/files/run/xmlLiterals.scala
+++ b/test/files/run/xmlLiterals.scala
@@ -66,9 +66,9 @@ object Test with Application {
Elem("h1",Text("Hello World")),
Elem("p",Text("Check the "),
Elem("a", Text("scala"))
- % ('href <= "scala.epfl.ch" ),
+ % Pair("href","scala.epfl.ch"),
Text("page!"))
- ) %('background <= "#FFFFFF")
+ ) % Pair("background","#FFFFFF")
).toString()
));