Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Jan 15, 2024
1 parent 32e40e1 commit 4ba4f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/test/test-components/src/relay_driver/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::RunHandle<'a>, Self::Error>;
async fn run_relayer_in_background(&self) -> Result<Self::RunHandle<'_>, Self::Error>;
}

0 comments on commit 4ba4f89

Please sign in to comment.