From beb8c3a99dd365509baced07c4e8dc2fa8005ac8 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 19 Mar 2020 12:31:22 +0000 Subject: [PATCH] Fixed typo in "benchmark name" column width calculation. Closes #1885. --- src/catch2/reporters/catch_reporter_console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/catch2/reporters/catch_reporter_console.cpp b/src/catch2/reporters/catch_reporter_console.cpp index 8dc2227c..a7cb9fb7 100644 --- a/src/catch2/reporters/catch_reporter_console.cpp +++ b/src/catch2/reporters/catch_reporter_console.cpp @@ -363,7 +363,7 @@ ConsoleReporter::ConsoleReporter(ReporterConfig const& config) else { return{ - { "benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 32, ColumnInfo::Left }, + { "benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 43, ColumnInfo::Left }, { "samples mean std dev", 14, ColumnInfo::Right }, { "iterations low mean low std dev", 14, ColumnInfo::Right }, { "estimated high mean high std dev", 14, ColumnInfo::Right }