From 30073d3c6b386b959c351597d71b22a687a80a2f Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Tue, 5 Mar 2024 18:03:57 +0200 Subject: [PATCH] testing: Chagne default timeout to 6 seconds Signed-off-by: Alexandru Vasile --- testing/integration-tests/proc-macro/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/integration-tests/proc-macro/src/lib.rs b/testing/integration-tests/proc-macro/src/lib.rs index edc9a6b7e3..2ca2ce4aa6 100644 --- a/testing/integration-tests/proc-macro/src/lib.rs +++ b/testing/integration-tests/proc-macro/src/lib.rs @@ -17,7 +17,7 @@ pub fn subxt_test(attr: TokenStream, item: TokenStream) -> TokenStream { Ok(subxt_attr) => subxt_attr, Err(err) => return err.into_compile_error().into(), }; - let timeout_duration = subxt_attr.timeout.unwrap_or(60 * 5); + let timeout_duration = subxt_attr.timeout.unwrap_or(60 * 6); let func: syn::ItemFn = match syn::parse(item) { Ok(func) => func,