Updated test count check to include recently added tests

This commit is contained in:
Phil Nash 2011-08-09 18:39:31 +01:00
parent 4d0a8d96e6
commit d474d8dcd8
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
"Number of 'succeeding' tests is fixed" )
{
runner.runMatching( "./succeeding/*" );
CHECK( runner.getSuccessCount() == 249 );
CHECK( runner.getSuccessCount() == 257 );
CHECK( runner.getFailureCount() == 0 );
}