diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-04-01 11:49:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 11:49:16 -0400 |
commit | 1535fdd94902207bb3a563834700594bb6e8add9 (patch) | |
tree | 7a8014a8983ad89bf1d442ae0bc61c0e10a6b8a6 /cli/tests/integration/compile_tests.rs | |
parent | 1c37ac33526dc45ad0b3f83ca8294dbb55548096 (diff) |
chore: fix main (#14175)
Diffstat (limited to 'cli/tests/integration/compile_tests.rs')
-rw-r--r-- | cli/tests/integration/compile_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/compile_tests.rs b/cli/tests/integration/compile_tests.rs index dad607544..3d2a17ecc 100644 --- a/cli/tests/integration/compile_tests.rs +++ b/cli/tests/integration/compile_tests.rs @@ -189,7 +189,7 @@ fn standalone_load_datauri() { // https://github.com/denoland/deno/issues/13704 #[test] fn standalone_follow_redirects() { - let dir = TempDir::new().unwrap(); + let dir = TempDir::new(); let exe = if cfg!(windows) { dir.path().join("follow_redirects.exe") } else { |