| 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 88f2027eb71af5ef8ccc6fb8905c8330ed153727..587971a9c042cb3998c8cb03cb802d2f5014d462 100644
|
| --- a/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
|
| +++ b/chrome/browser/google_apis/gdata_wapi_operations_unittest.cc
|
| @@ -339,8 +339,7 @@ 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&include-shared=true&max-results=500&"
|
| - "include-installed-apps=true",
|
| + "showfolders=true&include-shared=true&max-results=500",
|
| http_request_.relative_url);
|
|
|
| // Sanity check of the result.
|
| @@ -373,8 +372,7 @@ 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&include-shared=true&max-results=500"
|
| - "&include-installed-apps=true",
|
| + "showfolders=true&include-shared=true&max-results=500",
|
| http_request_.relative_url);
|
|
|
| scoped_ptr<ResourceList> expected(
|
| @@ -408,8 +406,7 @@ 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&include-shared=true&max-results=500&"
|
| - "include-installed-apps=true",
|
| + "showfolders=true&include-shared=true&max-results=500",
|
| http_request_.relative_url);
|
| EXPECT_FALSE(result_data);
|
| }
|
|
|