| Index: update_attempter_unittest.cc
|
| diff --git a/update_attempter_unittest.cc b/update_attempter_unittest.cc
|
| index bb86af729874930a2d74e2e52e9a1b6790694955..eec342d139bc8f00eb9f1d4f5cd012207fa290b5 100644
|
| --- a/update_attempter_unittest.cc
|
| +++ b/update_attempter_unittest.cc
|
| @@ -10,7 +10,6 @@
|
| #include "update_engine/filesystem_copier_action.h"
|
| #include "update_engine/postinstall_runner_action.h"
|
| #include "update_engine/prefs_mock.h"
|
| -#include "update_engine/set_bootable_flag_action.h"
|
| #include "update_engine/update_attempter.h"
|
|
|
| using std::string;
|
| @@ -90,10 +89,6 @@ TEST_F(UpdateAttempterTest, GetErrorCodeForActionTest) {
|
| EXPECT_EQ(kActionCodePostinstallRunnerError,
|
| GetErrorCodeForAction(&postinstall_runner_action,
|
| kActionCodeError));
|
| - SetBootableFlagAction set_bootable_flag_action;
|
| - EXPECT_EQ(kActionCodeSetBootableFlagError,
|
| - GetErrorCodeForAction(&set_bootable_flag_action,
|
| - kActionCodeError));
|
| ActionMock action_mock;
|
| EXPECT_CALL(action_mock, Type()).Times(1).WillOnce(Return("ActionMock"));
|
| EXPECT_EQ(kActionCodeError,
|
| @@ -176,7 +171,6 @@ TEST_F(UpdateAttempterTest, UpdateTest) {
|
| DownloadAction::StaticType(),
|
| OmahaRequestAction::StaticType(),
|
| PostinstallRunnerAction::StaticType(),
|
| - SetBootableFlagAction::StaticType(),
|
| PostinstallRunnerAction::StaticType(),
|
| OmahaRequestAction::StaticType()
|
| };
|
|
|