From ef3aea571548da6afee20eaff99b8b6059875c13 Mon Sep 17 00:00:00 2001 From: mat007 Date: Sun, 22 Jul 2012 07:18:16 +0000 Subject: [PATCH] Cleanup git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@524 860be788-9bd5-4423-9f1e-828f051e677b --- test/test_max_args.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_max_args.cpp b/test/test_max_args.cpp index 01b2963..a23c9aa 100644 --- a/test/test_max_args.cpp +++ b/test/test_max_args.cpp @@ -29,7 +29,7 @@ BOOST_AUTO_TEST_CASE( call_mock_method_with_max_number_of_args ) m.method( BOOST_PP_ENUM(MOCK_MAX_ARGS, IDENTITY, 0) ); } -BOOST_AUTO_TEST_CASE( call_mock_method_with_max_number_of_args_and_returning_something ) +BOOST_AUTO_TEST_CASE( call_mock_method_with_max_number_of_args_and_a_return_value ) { my_custom_mock m; MOCK_EXPECT( m.method2 ).once().with( BOOST_PP_ENUM(MOCK_MAX_ARGS, IDENTITY, 0) ).returns( 42 );