diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2010-07-21 22:21:07 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2010-07-21 22:21:07 +0000 |
commit | d60c5f41c2842effec130a9b0483b92dbbed6e55 (patch) | |
tree | 3bf31ed2132e714664090c70f631205ad185c215 /test/gmock-matchers_test.cc | |
parent | e3bd0981ca06e682bcd03659286d7a3267c4d999 (diff) | |
download | googletest-d60c5f41c2842effec130a9b0483b92dbbed6e55.tar.gz googletest-d60c5f41c2842effec130a9b0483b92dbbed6e55.tar.bz2 googletest-d60c5f41c2842effec130a9b0483b92dbbed6e55.zip |
Removes unused scons scripts; picks up gtest r446.
Diffstat (limited to 'test/gmock-matchers_test.cc')
-rw-r--r-- | test/gmock-matchers_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/gmock-matchers_test.cc b/test/gmock-matchers_test.cc index f7a49c34..c2db86ca 100644 --- a/test/gmock-matchers_test.cc +++ b/test/gmock-matchers_test.cc @@ -3751,8 +3751,8 @@ TEST(MatcherTupleTest, ExplainsMatchFailure) { make_tuple(2, 'b'), &ss2); EXPECT_EQ(" Expected arg #0: is > 5\n" " Actual: 2, which is 3 less than 5\n" - " Expected arg #1: is equal to 'a' (97)\n" - " Actual: 'b' (98)\n", + " Expected arg #1: is equal to 'a' (97, 0x61)\n" + " Actual: 'b' (98, 0x62)\n", ss2.str()); // Failed match where both arguments need explanation. stringstream ss3; |