From 0cbdbc812228e6a5f9438ba521494defb2774093 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Mon, 14 Mar 2022 09:50:00 +0000 Subject: [PATCH] performance-metrics: Remove unnecessary prelude on `--list-tests` The user knows they have requested the list of tests. Signed-off-by: Rob Bradford --- performance-metrics/src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/performance-metrics/src/main.rs b/performance-metrics/src/main.rs index d0804273b..1324620d4 100644 --- a/performance-metrics/src/main.rs +++ b/performance-metrics/src/main.rs @@ -452,7 +452,6 @@ fn main() { .get_matches(); if cmd_arguments.is_present("list-tests") { - println!("List of available metrics tests:\n"); for test in TEST_LIST.iter() { println!("\"{}\" ({})", test.name, test.control); }