From ba13f3f098454a31ac62690f9eb1a1ec6dbd1b55 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 21 Nov 2013 08:08:05 +0000 Subject: [PATCH] Restored second arg to a TEST_CASE for non variadic compilers --- projects/SelfTest/MessageTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/SelfTest/MessageTests.cpp b/projects/SelfTest/MessageTests.cpp index 2065708d..e0c44848 100644 --- a/projects/SelfTest/MessageTests.cpp +++ b/projects/SelfTest/MessageTests.cpp @@ -13,7 +13,7 @@ TEST_CASE( "INFO and WARN do not abort tests", "[messages]" ) INFO( "this is a " << "message" ); // This should output the message if a failure occurs WARN( "this is a " << "warning" ); // This should always output the message but then continue } -TEST_CASE( "SUCCEED counts as a test pass" ) +TEST_CASE( "SUCCEED counts as a test pass", "[messages]" ) { SUCCEED( "this is a " << "success" ); }