Index: chrome/browser/google_apis/gdata_wapi_operations_unittest.cc |
diff --git a/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc b/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc |
index 11a8e3ebdaadf7929a16c99965530a45946774da..7cf60c60ffdc0430460367e11d32f5273437561f 100644 |
--- a/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc |
+++ b/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc |
@@ -338,7 +338,8 @@ TEST_F(GDataWapiOperationsTest, GetResourceListOperation_DefaultFeed) { |
EXPECT_EQ(HTTP_SUCCESS, result_code); |
EXPECT_EQ(test_server::METHOD_GET, http_request_.method); |
EXPECT_EQ("/feeds/default/private/full?v=3&alt=json&showroot=true&" |
- "showfolders=true&max-results=500&include-installed-apps=true", |
+ "showfolders=true&include-shared=true&max-results=500&" |
+ "include-installed-apps=true", |
http_request_.relative_url); |
EXPECT_TRUE(test_util::VerifyJsonData( |
test_util::GetTestFilePath("chromeos/gdata/root_feed.json"), |
@@ -368,7 +369,8 @@ TEST_F(GDataWapiOperationsTest, GetResourceListOperation_ValidFeed) { |
EXPECT_EQ(HTTP_SUCCESS, result_code); |
EXPECT_EQ(test_server::METHOD_GET, http_request_.method); |
EXPECT_EQ("/files/chromeos/gdata/root_feed.json?v=3&alt=json&showroot=true&" |
- "showfolders=true&max-results=500&include-installed-apps=true", |
+ "showfolders=true&include-shared=true&max-results=500" |
+ "&include-installed-apps=true", |
http_request_.relative_url); |
EXPECT_TRUE(test_util::VerifyJsonData( |
test_util::GetTestFilePath("chromeos/gdata/root_feed.json"), |
@@ -400,7 +402,8 @@ TEST_F(GDataWapiOperationsTest, GetResourceListOperation_InvalidFeed) { |
EXPECT_EQ(GDATA_PARSE_ERROR, result_code); |
EXPECT_EQ(test_server::METHOD_GET, http_request_.method); |
EXPECT_EQ("/files/chromeos/gdata/testfile.txt?v=3&alt=json&showroot=true&" |
- "showfolders=true&max-results=500&include-installed-apps=true", |
+ "showfolders=true&include-shared=true&max-results=500&" |
+ "include-installed-apps=true", |
http_request_.relative_url); |
EXPECT_FALSE(result_data); |
} |