From d474d8dcd8653836b05b206b139150b1f6da0c4b Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 9 Aug 2011 18:39:31 +0100 Subject: [PATCH] Updated test count check to include recently added tests --- projects/SelfTest/TestMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/SelfTest/TestMain.cpp b/projects/SelfTest/TestMain.cpp index c87e2ec9..8355c2f7 100644 --- a/projects/SelfTest/TestMain.cpp +++ b/projects/SelfTest/TestMain.cpp @@ -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 ); }