diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-03-22 12:55:19 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 12:55:19 -0600 |
commit | cebefa87832244682edeacae81c05b38c2414ca0 (patch) | |
tree | fe038b47e130c3867c5bf74e4d1bbdc9f8fe2c89 /cli/bench/main.rs | |
parent | df614ff6e5cc0b3d48534fb20a348412bebea576 (diff) |
chore(test_util): replace tempdir code w/tempdir crate (#18340)
Diffstat (limited to 'cli/bench/main.rs')
-rw-r--r-- | cli/bench/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/bench/main.rs b/cli/bench/main.rs index ac1798b02..02c775e8f 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -502,7 +502,7 @@ async fn main() -> Result<()> { let mut syscall_count = HashMap::<String, i64>::new(); for (name, args, expected_exit_code) in EXEC_TIME_BENCHMARKS { - let mut file = secure_tempfile::NamedTempFile::new()?; + let mut file = tempfile::NamedTempFile::new()?; let exit_status = Command::new("strace") .args([ |