summaryrefslogtreecommitdiff
path: root/test/files/run/imports.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/imports.scala')
-rw-r--r--test/files/run/imports.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/imports.scala b/test/files/run/imports.scala
index d976478d8b..22e6fa9ca5 100644
--- a/test/files/run/imports.scala
+++ b/test/files/run/imports.scala
@@ -6,11 +6,11 @@
//############################################################################
object checker {
- def check(where: String, what: String, value: Any): Unit = {
- Console.print("In " + where + ", " + what + ".toString() returns ");
+ def check(location: String, what: String, value: Any): Unit = {
+ Console.print("In " + location + ", " + what + ".toString() returns ");
Console.flush;
val string: String = if (value == null) "null" else value.toString();
- val test = if (string == where) "ok" else "KO";
+ val test = if (string == location) "ok" else "KO";
Console.println(string + " -> " + test);
Console.flush;
}