diff options
Diffstat (limited to 'action_unittest.cc')
-rw-r--r-- | action_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/action_unittest.cc b/action_unittest.cc index af0e130e..e09967f5 100644 --- a/action_unittest.cc +++ b/action_unittest.cc @@ -33,7 +33,7 @@ class ActionTestAction : public Action<ActionTestAction> { void PerformAction() {} void CompleteAction() { ASSERT_TRUE(processor()); - processor()->ActionComplete(this, kActionCodeSuccess); + processor()->ActionComplete(this, kErrorCodeSuccess); } string Type() const { return "ActionTestAction"; } }; |