Remove the !hide special tag

This commit is contained in:
Martin Hořeňovský
2020-01-28 20:48:32 +01:00
parent 49e000b505
commit ddd0e7218d
4 changed files with 5 additions and 4 deletions

View File

@@ -50,8 +50,7 @@ namespace Catch {
}
TestCaseProperties parseSpecialTag( StringRef tag ) {
if( (!tag.empty() && tag[0] == '.')
|| tag == "!hide"_sr )
if( !tag.empty() && tag[0] == '.' )
return TestCaseProperties::IsHidden;
else if( tag == "!throws"_sr )
return TestCaseProperties::Throws;