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,