| 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 b5cd64ddc4ee19b8939f0a52005961670e13cdcc..e2bd42be5f46208d4deca3fce5a34ffade775848 100644
 | 
| --- a/src/platform/update_engine/filesystem_copier_action_unittest.cc
 | 
| +++ b/src/platform/update_engine/filesystem_copier_action_unittest.cc
 | 
| @@ -231,7 +231,7 @@ TEST_F(FilesystemCopierActionTest, FullUpdateTest) {
 | 
|  
 | 
|    ObjectFeederAction<InstallPlan> feeder_action;
 | 
|    const char* kUrl = "http://some/url";
 | 
| -  InstallPlan install_plan(true, kUrl, "", "", "");
 | 
| +  InstallPlan install_plan(true, kUrl, 0, "", "", "");
 | 
|    feeder_action.set_obj(install_plan);
 | 
|    FilesystemCopierAction copier_action(false);
 | 
|    ObjectCollectorAction<InstallPlan> collector_action;
 | 
| @@ -256,7 +256,7 @@ TEST_F(FilesystemCopierActionTest, NonExistentDriveTest) {
 | 
|    processor.set_delegate(&delegate);
 | 
|  
 | 
|    ObjectFeederAction<InstallPlan> feeder_action;
 | 
| -  InstallPlan install_plan(false, "", "", "/no/such/file", "/no/such/file");
 | 
| +  InstallPlan install_plan(false, "", 0, "", "/no/such/file", "/no/such/file");
 | 
|    feeder_action.set_obj(install_plan);
 | 
|    FilesystemCopierAction copier_action(false);
 | 
|    ObjectCollectorAction<InstallPlan> collector_action;
 | 
| 
 |