summaryrefslogtreecommitdiff
path: root/test/files/jvm/xml02.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/xml02.scala')
-rw-r--r--test/files/jvm/xml02.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/jvm/xml02.scala b/test/files/jvm/xml02.scala
index fb790d5926..b830a0e694 100644
--- a/test/files/jvm/xml02.scala
+++ b/test/files/jvm/xml02.scala
@@ -36,26 +36,26 @@ object Test {
val z = ax \ "@{the namespace from outer space}foo"
assert((ax \ "@{the namespace from outer space}foo") xml_== "baz")
assert((cx \ "@{the namespace from outer space}foo") xml_== "baz")
-
+
try {
ax \ "@"
assert(false)
} catch {
- case _: IllegalArgumentException =>
+ case _: IllegalArgumentException =>
}
try {
ax \ "@{"
assert(false)
} catch {
- case _: IllegalArgumentException =>
+ case _: IllegalArgumentException =>
}
try {
ax \ "@{}"
assert(false)
} catch {
- case _: IllegalArgumentException =>
+ case _: IllegalArgumentException =>
}
-
+
}
}