| Index: google_apis/gaia/oauth2_mint_token_flow_unittest.cc
|
| diff --git a/google_apis/gaia/oauth2_mint_token_flow_unittest.cc b/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
|
| index e213984519435a184d97ba0d4c931c409ba13ffd..320660145e11469b0fdfba4edd28a334d1db2820 100644
|
| --- a/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
|
| +++ b/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
|
| @@ -272,7 +272,7 @@ TEST_F(OAuth2MintTokenFlowTest, ParseIssueAdviceResponse) {
|
| TEST_F(OAuth2MintTokenFlowTest, ProcessApiCallSuccess) {
|
| { // No body.
|
| TestURLFetcher url_fetcher(1, GURL("http://www.google.com"), NULL);
|
| - url_fetcher.SetResponseString("");
|
| + url_fetcher.SetResponseString(std::string());
|
| CreateFlow(OAuth2MintTokenFlow::MODE_MINT_TOKEN_NO_FORCE);
|
| EXPECT_CALL(delegate_, OnMintTokenFailure(_));
|
| flow_->ProcessApiCallSuccess(&url_fetcher);
|
|
|