From 0b097c26b6b1a086cf1077a507614fe5b171502a Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 2 Oct 2013 08:07:52 +0100 Subject: [PATCH] Fix wrapping width when listing tests - addresses #201 --- include/internal/catch_list.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_list.hpp b/include/internal/catch_list.hpp index 050e1793..550107f8 100644 --- a/include/internal/catch_list.hpp +++ b/include/internal/catch_list.hpp @@ -58,7 +58,7 @@ namespace Catch { matchedTests++; Text nameWrapper( it->getTestCaseInfo().name, TextAttributes() - .setWidth( maxNameLen ) + .setWidth( maxNameLen+2 ) .setInitialIndent(2) .setIndent(4) );