summaryrefslogtreecommitdiff
path: root/test/files/run/sysprops.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-17 20:04:47 +0000
committerPaul Phillips <paulp@improving.org>2011-03-17 20:04:47 +0000
commit5647d7300922a357ab849e528fcc840afc92e33a (patch)
tree8fbca8bdfecf120f2c81fd9167c35276f6c9815b /test/files/run/sysprops.scala
parentcc672b023e872ccad0e6186d8159725dc4eb1281 (diff)
downloadscala-5647d7300922a357ab849e528fcc840afc92e33a.tar.gz
scala-5647d7300922a357ab849e528fcc840afc92e33a.tar.bz2
scala-5647d7300922a357ab849e528fcc840afc92e33a.zip
Always forget that checking system properties c...
Always forget that checking system properties causes exceptions in applets and such. Made the system property wrapper wrap its access checks in some more wrapping. I spent a long time trying to write a test for the security manager but it's hopeless without knowing all the details of the test environment. Closes #4346, no review.
Diffstat (limited to 'test/files/run/sysprops.scala')
-rw-r--r--test/files/run/sysprops.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/sysprops.scala b/test/files/run/sysprops.scala
index d3df22d634..bdad677221 100644
--- a/test/files/run/sysprops.scala
+++ b/test/files/run/sysprops.scala
@@ -5,7 +5,7 @@ object Test {
val key = "ding.dong.doobie"
def bool() = {
- val prop = Prop.bool(key)
+ val prop = BooleanProp.valueIsTrue(key)
assert(prop.key == key)
prop.clear()