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

Unified Diff: src/platform/update_engine/filesystem_copier_action_unittest.cc

Issue 545072: AU: Gut code for old updater. New protobuf for v2 updater. (Closed)
Patch Set: better comments Created 10 years, 11 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: src/platform/update_engine/filesystem_copier_action_unittest.cc
diff --git a/src/platform/update_engine/filesystem_copier_action_unittest.cc b/src/platform/update_engine/filesystem_copier_action_unittest.cc
index 6d6f0adeeb739041dbb1128643fa92832a2006ee..1e024f1898781fcfb1c69c99c69f13a57c2078cb 100644
--- a/src/platform/update_engine/filesystem_copier_action_unittest.cc
+++ b/src/platform/update_engine/filesystem_copier_action_unittest.cc
@@ -222,7 +222,7 @@ TEST_F(FilesystemCopierActionTest, FullUpdateTest) {
processor.set_delegate(&delegate);
ObjectFeederAction<InstallPlan> feeder_action;
- InstallPlan install_plan(true, "", "", "", "");
+ InstallPlan install_plan(true, "", "", "");
feeder_action.set_obj(install_plan);
FilesystemCopierAction copier_action;
ObjectCollectorAction<InstallPlan> collector_action;
@@ -246,7 +246,7 @@ TEST_F(FilesystemCopierActionTest, NonExistentDriveTest) {
processor.set_delegate(&delegate);
ObjectFeederAction<InstallPlan> feeder_action;
- InstallPlan install_plan(false, "", "", "", "/some/missing/file/path");
+ InstallPlan install_plan(false, "", "", "/some/missing/file/path");
feeder_action.set_obj(install_plan);
FilesystemCopierAction copier_action;
ObjectCollectorAction<InstallPlan> collector_action;

Powered by Google App Engine
This is Rietveld 408576698