Skip to content

Commit e3633fc

Browse files
committed
Reduce default time to 30s
1 parent ea4b6d0 commit e3633fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vm/examples/heap_profiling.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ pub fn main() {
194194
Arg::new("runtime")
195195
.long("runtime")
196196
.help("Time in seconds how long the tests should be running")
197-
.value_parser(clap::value_parser!(u64).range(1..3600))
198-
.default_value("60"),
197+
.value_parser(clap::value_parser!(u64).range(1..10_000))
198+
.default_value("30"),
199199
)
200200
.get_matches();
201201
let runtime = matches

0 commit comments

Comments
 (0)