From bb9f2bb3ad293971b376cd78a55b947ee62f07aa Mon Sep 17 00:00:00 2001 From: Baruch Burstein Date: Tue, 4 Jul 2017 18:16:42 +0300 Subject: [PATCH] Use new formatting capabilities --- 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 5d9d8ed4..a423f3b4 100644 --- a/include/internal/catch_list.hpp +++ b/include/internal/catch_list.hpp @@ -45,7 +45,7 @@ namespace Catch { Catch::cout() << Text( testCaseInfo.name, nameAttr ) << std::endl; if( config.verbosity() >= Verbosity::High ) { - Catch::cout() << " " << testCaseInfo.lineInfo << std::endl; + Catch::cout() << Text( testCaseInfo.lineInfo, descAttr ) << std::endl; std::string description = testCaseInfo.description; if( description == "" ) description = "(NO DESCRIPTION)";