summaryrefslogtreecommitdiff
path: root/test_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'test_utils.h')
-rw-r--r--test_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test_utils.h b/test_utils.h
index 43ff339a..120f0808 100644
--- a/test_utils.h
+++ b/test_utils.h
@@ -216,7 +216,7 @@ class ObjectFeederAction : public Action<ObjectFeederAction<T> > {
if (this->HasOutputPipe()) {
this->SetOutputObject(out_obj_);
}
- this->processor_->ActionComplete(this, kErrorCodeSuccess);
+ this->processor_->ActionComplete(this, ErrorCode::kSuccess);
}
static std::string StaticType() { return "ObjectFeederAction"; }
std::string Type() const { return StaticType(); }
@@ -250,7 +250,7 @@ class ObjectCollectorAction : public Action<ObjectCollectorAction<T> > {
if (this->HasInputObject()) {
object_ = this->GetInputObject();
}
- this->processor_->ActionComplete(this, kErrorCodeSuccess);
+ this->processor_->ActionComplete(this, ErrorCode::kSuccess);
}
static std::string StaticType() { return "ObjectCollectorAction"; }
std::string Type() const { return StaticType(); }