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

Unified Diff: google_apis/gaia/google_service_auth_error_unittest.cc

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 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
Index: google_apis/gaia/google_service_auth_error_unittest.cc
diff --git a/google_apis/gaia/google_service_auth_error_unittest.cc b/google_apis/gaia/google_service_auth_error_unittest.cc
index 59aa5105fc36ead3a99c5eac6bf4cf5a7bd6b669..15155b64e945a15259c9b3ae555d28da79a68e0d 100644
--- a/google_apis/gaia/google_service_auth_error_unittest.cc
+++ b/google_apis/gaia/google_service_auth_error_unittest.cc
@@ -64,7 +64,7 @@ TEST_F(GoogleServiceAuthErrorTest, CaptchaChallenge) {
EXPECT_TRUE(value->GetDictionary("captcha", &captcha_value));
ASSERT_TRUE(captcha_value);
ExpectDictStringValue("captcha_token", *captcha_value, "token");
- ExpectDictStringValue("", *captcha_value, "audioUrl");
+ ExpectDictStringValue(std::string(), *captcha_value, "audioUrl");
ExpectDictStringValue("http://www.google.com/", *captcha_value, "imageUrl");
ExpectDictStringValue("http://www.bing.com/", *captcha_value, "unlockUrl");
ExpectDictIntegerValue(0, *captcha_value, "imageWidth");
« no previous file with comments | « google_apis/gaia/google_service_auth_error.cc ('k') | google_apis/gaia/oauth2_access_token_fetcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698