performance-metrics: Consistently use "test_timeout" over "test_time"

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2022-02-25 11:08:16 +00:00
parent 6db3d89837
commit acafda6739
2 changed files with 14 additions and 13 deletions

View File

@@ -100,7 +100,7 @@ pub struct PerformanceTestControl {
impl fmt::Display for PerformanceTestControl {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let mut output = format!(
"test_time = {}s, test_iterations = {}",
"test_timeout = {}s, test_iterations = {}",
self.test_timeout, self.test_iterations
);
if let Some(o) = self.num_queues {