Fixed issue with reading test names from file

This commit is contained in:
Phil Nash 2014-05-19 18:20:44 +01:00
parent fcf0deb116
commit e8aa0bb19b
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ namespace Catch {
while( std::getline( f, line ) ) {
line = trim(line);
if( !line.empty() && !startsWith( line, "#" ) )
addTestOrTags( config, line );
addTestOrTags( config, "\"" + line + "\"" );
}
}