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

Unified Diff: chrome/browser/chromeos/drive/fake_file_system_unittest.cc

Issue 23625013: Remove drive::FileSystemInterface::Initialize(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 3 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
« no previous file with comments | « chrome/browser/chromeos/drive/fake_file_system.cc ('k') | chrome/browser/chromeos/drive/file_system.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/drive/fake_file_system_unittest.cc
diff --git a/chrome/browser/chromeos/drive/fake_file_system_unittest.cc b/chrome/browser/chromeos/drive/fake_file_system_unittest.cc
index 532d3518cd2783d40e43e729902c0c730d3f56ef..b1d6a22062f62b9f6caa3408b83f57b71493153c 100644
--- a/chrome/browser/chromeos/drive/fake_file_system_unittest.cc
+++ b/chrome/browser/chromeos/drive/fake_file_system_unittest.cc
@@ -20,14 +20,13 @@ class FakeFileSystemTest : public ::testing::Test {
virtual void SetUp() OVERRIDE {
// Initialize FakeDriveService.
fake_drive_service_.reset(new FakeDriveService);
- fake_drive_service_->LoadResourceListForWapi(
- "gdata/root_feed.json");
- fake_drive_service_->LoadAccountMetadataForWapi(
- "gdata/account_metadata.json");
+ ASSERT_TRUE(fake_drive_service_->LoadResourceListForWapi(
+ "gdata/root_feed.json"));
+ ASSERT_TRUE(fake_drive_service_->LoadAccountMetadataForWapi(
+ "gdata/account_metadata.json"));
// Create a testee instance.
fake_file_system_.reset(new FakeFileSystem(fake_drive_service_.get()));
- ASSERT_TRUE(fake_file_system_->InitializeForTesting());
}
content::TestBrowserThreadBundle thread_bundle_;
« no previous file with comments | « chrome/browser/chromeos/drive/fake_file_system.cc ('k') | chrome/browser/chromeos/drive/file_system.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698