Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1788)

Unified Diff: chrome/browser/net/quoted_printable_unittest.cc

Issue 6691024: One more fix for gcc-4.5 compile missed in r80277 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/quoted_printable_unittest.cc
diff --git a/chrome/browser/net/quoted_printable_unittest.cc b/chrome/browser/net/quoted_printable_unittest.cc
index 627e5077c386a0089869d91102eb0610d94a8ddf..3ff123dd905a7e1092ae6f4ef91e4fc61c4a7f33 100644
--- a/chrome/browser/net/quoted_printable_unittest.cc
+++ b/chrome/browser/net/quoted_printable_unittest.cc
@@ -182,7 +182,7 @@ TEST(QuotedPrintableTest, Decode) {
EXPECT_TRUE(chrome::browser::net::QuotedPrintableDecode(
kEncodedText[i], &output));
std::string expected(kNormalText[i]);
- SCOPED_TRACE(::testing::Message::Message() << "Iteration " << i <<
+ SCOPED_TRACE(::testing::Message() << "Iteration " << i <<
"\n Actual=\n" << output << "\n Expected=\n" <<
expected);
// We cannot test for equality as EOLs won't match the normal text
@@ -196,7 +196,7 @@ TEST(QuotedPrintableTest, Decode) {
TEST(QuotedPrintableTest, DecodeBadInput) {
ASSERT_EQ(arraysize(kBadEncodedText), arraysize(kBadEncodedTextDecoded));
for (size_t i = 0; i < arraysize(kBadEncodedText); ++i) {
- SCOPED_TRACE(::testing::Message::Message() << "Iteration " << i);
+ SCOPED_TRACE(::testing::Message() << "Iteration " << i);
std::string output;
EXPECT_FALSE(chrome::browser::net::QuotedPrintableDecode(
kBadEncodedText[i], &output));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698