summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2020-06-05 04:23:07 +0200
committerBert Belder <bertbelder@gmail.com>2020-06-05 05:11:15 +0200
commit9a783ae4e6789fc90c8a6d62e846c9abd29e7d2f (patch)
treef29deee9518be75fc4b4d99e4e3c24343de83053 /cli/tests/integration_tests.rs
parent7069d60423979858ece856d52ef9567a50f8ef76 (diff)
ci: upgrade to Rust 1.44.0 (#6113)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index ff94d2f50..54d88b874 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -2787,7 +2787,7 @@ mod util {
pub const PERMISSION_DENIED_PATTERN: &str = "PermissionDenied";
lazy_static! {
- static ref DENO_DIR: TempDir = { TempDir::new().expect("tempdir fail") };
+ static ref DENO_DIR: TempDir = TempDir::new().expect("tempdir fail");
// STRIP_ANSI_RE and strip_ansi_codes are lifted from the "console" crate.
// Copyright 2017 Armin Ronacher <armin.ronacher@active-4.com>. MIT License.