From 3cf0de38db8361239ecd84ca670a2edd06de1808 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 18 Sep 2020 14:56:15 +1000 Subject: [PATCH] Slow down sims --- testing/simulator/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/simulator/src/cli.rs b/testing/simulator/src/cli.rs index 69b679817a3..1ce8b2a5d9b 100644 --- a/testing/simulator/src/cli.rs +++ b/testing/simulator/src/cli.rs @@ -34,7 +34,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> { .short("s") .long("speed_up_factor") .takes_value(true) - .default_value("6") + .default_value("3") .help("Speed up factor")) .arg(Arg::with_name("continue_after_checks") .short("c") @@ -62,7 +62,7 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> { .short("s") .long("speed_up_factor") .takes_value(true) - .default_value("6") + .default_value("3") .help("Speed up factor")) .arg(Arg::with_name("continue_after_checks") .short("c")