diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-05-13 18:55:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 22:55:14 +0000 |
commit | f2dc3f9a94444b1a5a40570be09c7f64903d27cb (patch) | |
tree | 2a07be0ce3aa766934f0483ab67c760e9ab0a339 /tests/specs/mod.rs | |
parent | df879f9f746366ee6bd1dc757514e8e73deddc1d (diff) |
chore(task): various small refactorings (#23793)
Diffstat (limited to 'tests/specs/mod.rs')
-rw-r--r-- | tests/specs/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/specs/mod.rs b/tests/specs/mod.rs index f367f5c77..a153322db 100644 --- a/tests/specs/mod.rs +++ b/tests/specs/mod.rs @@ -6,7 +6,6 @@ use std::collections::HashMap; use std::collections::HashSet; use std::panic::AssertUnwindSafe; use std::rc::Rc; -use std::sync::Arc; use deno_core::anyhow::Context; use deno_core::serde_json; @@ -174,7 +173,7 @@ pub fn main() { file_test_runner::run_tests( &root_category, file_test_runner::RunOptions { parallel: true }, - Arc::new(run_test), + run_test, ); } |