summaryrefslogtreecommitdiff
path: root/test/files/run/sysprops.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/sysprops.scala')
-rw-r--r--test/files/run/sysprops.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/run/sysprops.scala b/test/files/run/sysprops.scala
index bdad677221..4d98e2cdd0 100644
--- a/test/files/run/sysprops.scala
+++ b/test/files/run/sysprops.scala
@@ -3,16 +3,16 @@ import sys._
/** Basic sys.Prop test. */
object Test {
val key = "ding.dong.doobie"
-
+
def bool() = {
val prop = BooleanProp.valueIsTrue(key)
assert(prop.key == key)
-
+
prop.clear()
assert(!prop.value)
assert(!prop.isSet)
assert(prop.get != null)
-
+
prop set "dingus"
assert(prop.get == "dingus")
assert(!prop.value)
@@ -32,7 +32,7 @@ object Test {
prop.set("523")
assert(prop.value == 523)
prop.set("DingusInt")
-
+
try { println(prop.value) ; assert(false, "should not get here") }
catch { case _: Exception => () }
}
@@ -41,7 +41,7 @@ object Test {
prop.set("55.0")
assert(prop.value == 55.0)
}
-
+
def main(args: Array[String]): Unit = {
bool()
int()