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

Unified Diff: chrome/browser/google_apis/gdata_wapi_parser_unittest.cc

Issue 18355004: google_apis: Move data files out of chrome/test/data/chromeos (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix extension tests Created 7 years, 6 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: chrome/browser/google_apis/gdata_wapi_parser_unittest.cc
diff --git a/chrome/browser/google_apis/gdata_wapi_parser_unittest.cc b/chrome/browser/google_apis/gdata_wapi_parser_unittest.cc
index f69efe280a555e8a71de2e532d70675c1e61f747..f4f564d42ffd11cc78650b614aa9bbb34c39a98a 100644
--- a/chrome/browser/google_apis/gdata_wapi_parser_unittest.cc
+++ b/chrome/browser/google_apis/gdata_wapi_parser_unittest.cc
@@ -23,7 +23,7 @@ namespace google_apis {
TEST(GDataWAPIParserTest, ResourceListJsonParser) {
std::string error;
scoped_ptr<base::Value> document =
- test_util::LoadJSONFile("chromeos/gdata/basic_feed.json");
+ test_util::LoadJSONFile("gdata/basic_feed.json");
ASSERT_TRUE(document.get());
ASSERT_EQ(base::Value::TYPE_DICTIONARY, document->GetType());
scoped_ptr<ResourceList> feed(ResourceList::ExtractAndParse(*document));
@@ -152,7 +152,7 @@ TEST(GDataWAPIParserTest, ResourceListJsonParser) {
TEST(GDataWAPIParserTest, ResourceEntryJsonParser) {
std::string error;
scoped_ptr<base::Value> document =
- test_util::LoadJSONFile("chromeos/gdata/file_entry.json");
+ test_util::LoadJSONFile("gdata/file_entry.json");
ASSERT_TRUE(document.get());
ASSERT_EQ(base::Value::TYPE_DICTIONARY, document->GetType());
scoped_ptr<ResourceEntry> entry(ResourceEntry::ExtractAndParse(*document));
@@ -233,7 +233,7 @@ TEST(GDataWAPIParserTest, ResourceEntryJsonParser) {
TEST(GDataWAPIParserTest, AccountMetadataParser) {
scoped_ptr<base::Value> document =
- test_util::LoadJSONFile("chromeos/gdata/account_metadata.json");
+ test_util::LoadJSONFile("gdata/account_metadata.json");
ASSERT_TRUE(document.get());
base::DictionaryValue* document_dict = NULL;
base::DictionaryValue* entry_value = NULL;
« no previous file with comments | « chrome/browser/google_apis/drive_api_requests_unittest.cc ('k') | chrome/browser/google_apis/gdata_wapi_requests_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698