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 | |
parent | df879f9f746366ee6bd1dc757514e8e73deddc1d (diff) |
chore(task): various small refactorings (#23793)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Cargo.toml | 2 | ||||
-rw-r--r-- | tests/specs/mod.rs | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/Cargo.toml b/tests/Cargo.toml index e14299c93..fa633f607 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -43,7 +43,7 @@ deno_lockfile.workspace = true deno_terminal.workspace = true deno_tls.workspace = true fastwebsockets = { workspace = true, features = ["upgrade", "unstable-split"] } -file_test_runner = "0.6.0" +file_test_runner = "0.7.0" flaky_test = "=0.1.0" http.workspace = true http-body-util.workspace = true 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, ); } |