Merge pull request #680 from nabijaczleweli/master

Fix misindent in internal/catch_test_spec.hpp:70
This commit is contained in:
Phil Nash
2016-09-27 09:49:37 +01:00
committed by GitHub

View File

@ -67,7 +67,7 @@ namespace Catch {
for( std::vector<Ptr<Pattern> >::const_iterator it = m_patterns.begin(), itEnd = m_patterns.end(); it != itEnd; ++it )
if( !(*it)->matches( testCase ) )
return false;
return true;
return true;
}
};