Removed redundant const

(also fixed test counts)
This commit is contained in:
Phil Nash 2012-04-28 12:39:15 +01:00
parent 861a1e79cf
commit 83a66a6255
3 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,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.getTotals().assertions.passed == 272 );
CHECK( runner.getTotals().assertions.passed == 276 );
CHECK( runner.getTotals().assertions.failed == 0 );
}