Skip to content

Commit 0c11a44

Browse files
committed
Fix clippy lints
- Workaround for false positive
1 parent 9c690e3 commit 0c11a44

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • crates/cli/src/commands/test

crates/cli/src/commands/test/mev.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ async fn test_single_mev(
224224
) -> Vec<TestResult> {
225225
let mut join_set = JoinSet::new();
226226

227-
for test_case in queued_tests.to_owned() {
227+
let queued_tests = queued_tests.to_vec();
228+
for test_case in queued_tests {
228229
let token = token.clone();
229230
let conf = conf.clone();
230231
let target = target.to_string();

0 commit comments

Comments
 (0)