diff options
Diffstat (limited to 'action_processor_unittest.cc')
-rw-r--r-- | action_processor_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/action_processor_unittest.cc b/action_processor_unittest.cc index 20bded6b..a55f0d39 100644 --- a/action_processor_unittest.cc +++ b/action_processor_unittest.cc @@ -33,7 +33,7 @@ class ActionProcessorTestAction : public Action<ActionProcessorTestAction> { void PerformAction() {} void CompleteAction() { ASSERT_TRUE(processor()); - processor()->ActionComplete(this, kErrorCodeSuccess); + processor()->ActionComplete(this, ErrorCode::kSuccess); } string Type() const { return "ActionProcessorTestAction"; } }; @@ -66,7 +66,7 @@ class MyActionProcessorDelegate : public ActionProcessorDelegate { processing_done_called_(false), processing_stopped_called_(false), action_completed_called_(false), - action_exit_code_(kErrorCodeError) {} + action_exit_code_(ErrorCode::kError) {} virtual void ProcessingDone(const ActionProcessor* processor, ErrorCode code) { |