From 4ba4f8992d31df2d8bf105884f979ea1cf211580 Mon Sep 17 00:00:00 2001 From: Soares Chen Date: Mon, 15 Jan 2024 18:04:38 +0100 Subject: [PATCH] Fix clippy --- crates/test/test-components/src/relay_driver/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/test/test-components/src/relay_driver/run.rs b/crates/test/test-components/src/relay_driver/run.rs index 94ba118e1..8a8c647a1 100644 --- a/crates/test/test-components/src/relay_driver/run.rs +++ b/crates/test/test-components/src/relay_driver/run.rs @@ -14,5 +14,5 @@ pub trait CanRunRelayerInBackground: HasErrorType { is kept alive. If the relayer stops before the `RunHandle` is dropped, the relay driver may panic to cause the running test to fail. */ - async fn run_relayer_in_background<'a>(&'a self) -> Result, Self::Error>; + async fn run_relayer_in_background(&self) -> Result, Self::Error>; }