mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-25 14:09:26 +00:00
Fixed issue with reading test names from file
This commit is contained in:
parent
fcf0deb116
commit
e8aa0bb19b
2 changed files with 2 additions and 2 deletions
|
@ -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 + "\"" );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue