aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t5857.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/t5857.scala')
-rw-r--r--tests/run/t5857.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/run/t5857.scala b/tests/run/t5857.scala
index eabf5dc86..fe67a7546 100644
--- a/tests/run/t5857.scala
+++ b/tests/run/t5857.scala
@@ -36,10 +36,9 @@ object Test {
b
}
- // whatever it is, it should be less than, say, 250ms
+ // whatever it is, it should be less than, say, 1000ms
// if `max` involves traversal, it takes over 5 seconds on a 3.2GHz i7 CPU
//println(exectime)
- assert(exectime < 250, exectime)
+ assert(exectime < 1000, exectime)
}
-
}