Fix misindent

Closes #679
This commit is contained in:
nabijaczleweli 2016-07-04 12:44:08 +02:00
parent c47c1797d2
commit 8c459dd207
No known key found for this signature in database
GPG Key ID: BCFD0B018D2658F1
1 changed files with 1 additions and 1 deletions

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;
}
};