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

Unified Diff: chrome/browser/chromeos/drive/resource_entry_conversion_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/chromeos/drive/resource_entry_conversion_unittest.cc
diff --git a/chrome/browser/chromeos/drive/resource_entry_conversion_unittest.cc b/chrome/browser/chromeos/drive/resource_entry_conversion_unittest.cc
index 9a4ed17305f8d7ef07f1d0e9f5dbe676844d92be..619d5d13041a6a6c456b97d47875508ae70a3a76 100644
--- a/chrome/browser/chromeos/drive/resource_entry_conversion_unittest.cc
+++ b/chrome/browser/chromeos/drive/resource_entry_conversion_unittest.cc
@@ -17,7 +17,7 @@ namespace drive {
TEST(ResourceEntryConversionTest, ConvertToResourceEntry_File) {
scoped_ptr<base::Value> value =
- google_apis::test_util::LoadJSONFile("chromeos/gdata/file_entry.json");
+ google_apis::test_util::LoadJSONFile("gdata/file_entry.json");
ASSERT_TRUE(value.get());
scoped_ptr<google_apis::ResourceEntry> gdata_resource_entry(
@@ -95,7 +95,7 @@ TEST(ResourceEntryConversionTest,
ConvertToResourceEntry_HostedDocument) {
scoped_ptr<base::Value> value =
google_apis::test_util::LoadJSONFile(
- "chromeos/gdata/hosted_document_entry.json");
+ "gdata/hosted_document_entry.json");
ASSERT_TRUE(value.get());
scoped_ptr<google_apis::ResourceEntry> gdata_resource_entry(
@@ -176,7 +176,7 @@ TEST(ResourceEntryConversionTest,
ConvertToResourceEntry_Directory) {
scoped_ptr<base::Value> value =
google_apis::test_util::LoadJSONFile(
- "chromeos/gdata/directory_entry.json");
+ "gdata/directory_entry.json");
ASSERT_TRUE(value.get());
scoped_ptr<google_apis::ResourceEntry> gdata_resource_entry(
@@ -247,7 +247,7 @@ TEST(ResourceEntryConversionTest,
ConvertToResourceEntry_DeletedHostedDocument) {
scoped_ptr<base::Value> value =
google_apis::test_util::LoadJSONFile(
- "chromeos/gdata/deleted_hosted_document_entry.json");
+ "gdata/deleted_hosted_document_entry.json");
ASSERT_TRUE(value.get());
scoped_ptr<google_apis::ResourceEntry> gdata_resource_entry(
@@ -327,7 +327,7 @@ TEST(ResourceEntryConversionTest,
TEST(ResourceEntryConversionTest,
ConvertToResourceEntry_SharedWithMeEntry) {
scoped_ptr<base::Value> value = google_apis::test_util::LoadJSONFile(
- "chromeos/gdata/shared_with_me_entry.json");
+ "gdata/shared_with_me_entry.json");
ASSERT_TRUE(value.get());
scoped_ptr<google_apis::ResourceEntry> gdata_resource_entry(
« no previous file with comments | « chrome/browser/chromeos/drive/job_scheduler_unittest.cc ('k') | chrome/browser/chromeos/drive/sync_client_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698