From 171b23479e38f982534b06835a2a96d8774430c6 Mon Sep 17 00:00:00 2001 From: mat007 Date: Tue, 13 Aug 2013 21:42:49 +0000 Subject: [PATCH] Fixed fail test git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@679 860be788-9bd5-4423-9f1e-828f051e677b --- test/fail_mismatch_type_in_returns_int_action.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fail_mismatch_type_in_returns_int_action.cpp b/test/fail_mismatch_type_in_returns_int_action.cpp index 03f952d..ebc3df7 100644 --- a/test/fail_mismatch_type_in_returns_int_action.cpp +++ b/test/fail_mismatch_type_in_returns_int_action.cpp @@ -17,6 +17,6 @@ namespace void test_case() { my_class c; - MOCK_EXPECT( c.my_method ).returns( "42" ); + MOCK_EXPECT( c.my_method ).returns( std::string() ); } }