diff --git a/crates/throttle/src/throttle.rs b/crates/throttle/src/throttle.rs index a7432658c..490f89464 100644 --- a/crates/throttle/src/throttle.rs +++ b/crates/throttle/src/throttle.rs @@ -373,6 +373,6 @@ mod test { let redis = RedisServer::spawn("").await.unwrap(); let conn = redis.connection().await.unwrap(); let cx = RedisContext::try_from(conn).await.unwrap(); - test_big_limits(1_000, None, 0.02, &VanillaRedis(cx.connection)).await; + test_big_limits(1_000, None, 0.2, &VanillaRedis(cx.connection)).await; } }