1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-03-26 12:24:47 +01:00

Fix wrapping width when listing tests

- addresses 
This commit is contained in:
Phil Nash 2013-10-02 08:07:52 +01:00
parent b9c6d30631
commit 0b097c26b6

@ -58,7 +58,7 @@ namespace Catch {
matchedTests++;
Text nameWrapper( it->getTestCaseInfo().name,
TextAttributes()
.setWidth( maxNameLen )
.setWidth( maxNameLen+2 )
.setInitialIndent(2)
.setIndent(4) );