summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/run/unittest_io.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/unittest_io.scala b/test/files/run/unittest_io.scala
index 53f9b3b87c..974dcff5b3 100644
--- a/test/files/run/unittest_io.scala
+++ b/test/files/run/unittest_io.scala
@@ -16,7 +16,7 @@ object Test extends TestConsoleMain {
// a client
val test = "{\"a\":\"\\u0022\"}"
val Expected = ("a","\"")
- assertTrue(util.parsing.json.JSON.parse(test) match {
+ assertTrue(scala.util.parsing.json.JSON.parse(test) match {
case Some(List(Expected)) => true
case z => Console.println(z); false
})