Fixed exception check regression

This commit is contained in:
Phil Nash
2011-03-14 08:45:55 +00:00
parent b826243956
commit 0dc4508d72
3 changed files with 25 additions and 14 deletions

View File

@@ -53,7 +53,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
{
runner.runMatching( "./failing/*" );
CHECK( runner.getSuccessCount() == 0 );
CHECK( runner.getFailureCount() == 54 );
CHECK( runner.getFailureCount() == 55 );
}
}
}