about summary refs log tree commit diff
path: root/src/libtest/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libtest/lib.rs')
-rw-r--r--src/libtest/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs
index 9ff9e382c88..2e90750b7a0 100644
--- a/src/libtest/lib.rs
+++ b/src/libtest/lib.rs
@@ -563,7 +563,7 @@ fn run_test_in_process(
         None
     };
 
-    let start = report_time.to_option(Instant::now());
+    let start = report_time.then_some(Instant::now());
     let result = catch_unwind(AssertUnwindSafe(testfn));
     let exec_time = start.map(|start| {
         let duration = start.elapsed();
@@ -594,7 +594,7 @@ fn spawn_test_subprocess(
         let args = env::args().collect::<Vec<_>>();
         let current_exe = &args[0];
 
-        let start = report_time.to_option(Instant::now());
+        let start = report_time.then_some(Instant::now());
         let output = match Command::new(current_exe)
             .env(SECONDARY_TEST_INVOKER_VAR, desc.name.as_slice())
             .output() {