From 24a9f83a4836a5a5c31c12a84f0ec11d217b2d80 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Fri, 28 Feb 2025 11:58:47 +0000 Subject: [PATCH] Bump the timeout on "wait_until_i_am_the_last_task" --- crates/librqbit/src/tests/test_util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/librqbit/src/tests/test_util.rs b/crates/librqbit/src/tests/test_util.rs index 1130b8c..142a2e3 100644 --- a/crates/librqbit/src/tests/test_util.rs +++ b/crates/librqbit/src/tests/test_util.rs @@ -208,7 +208,7 @@ pub async fn wait_until_i_am_the_last_task() -> anyhow::Result<()> { Ok(()) }, // This needs to be higher than the timeout the tasks print "still running" - Duration::from_secs(6), + Duration::from_secs(15), ) .await }