From 1d346a0b5611924ecc581d79fd7752cb84e465a0 Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Sun, 13 Oct 2019 07:53:15 +0200 Subject: [PATCH] Rustup to https://github.com/rust-lang/rust/pull/64873 `report_time` was renamed to `time_options` and is now an `Option`. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c231441..387b196 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -126,7 +126,7 @@ pub fn test_opts(config: &Config) -> test::TestOpts { skip: vec![], list: false, options: test::Options::new(), - report_time: false, + time_options: None, } }