aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/testlib
diff options
context:
space:
mode:
authorivanmorozov <ivanmorozov@yandex-team.com>2023-07-08 10:42:41 +0300
committerivanmorozov <ivanmorozov@yandex-team.com>2023-07-08 10:42:41 +0300
commit81455e7b2b77e04a368defb143ff6662655c493e (patch)
tree93740ba5f14027d440543ed11263fb1ddc7b01b4 /library/cpp/actors/testlib
parent8b786ab7d76b124c88dbc7ed858770e56ae14206 (diff)
downloadydb-81455e7b2b77e04a368defb143ff6662655c493e.tar.gz
KIKIMR-18568: remove dependency library/cpp/actors to ydb/core/protos
Diffstat (limited to 'library/cpp/actors/testlib')
-rw-r--r--library/cpp/actors/testlib/test_runtime.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp
index e093b2e6bf4..92745747675 100644
--- a/library/cpp/actors/testlib/test_runtime.cpp
+++ b/library/cpp/actors/testlib/test_runtime.cpp
@@ -85,7 +85,7 @@ namespace NActors {
class TTestActorRuntimeBase::TEdgeActor : public TActor<TEdgeActor> {
public:
static constexpr EActivityType ActorActivityType() {
- return TEST_ACTOR_RUNTIME;
+ return EActivityType::TEST_ACTOR_RUNTIME;
}
TEdgeActor(TTestActorRuntimeBase* runtime)
@@ -1802,7 +1802,7 @@ namespace NActors {
class TReplyActor : public TActor<TReplyActor> {
public:
static constexpr EActivityType ActorActivityType() {
- return TEST_ACTOR_RUNTIME;
+ return EActivityType::TEST_ACTOR_RUNTIME;
}
TReplyActor(TStrandingActorDecorator* owner)
@@ -1818,7 +1818,7 @@ namespace NActors {
};
static constexpr EActivityType ActorActivityType() {
- return TEST_ACTOR_RUNTIME;
+ return EActivityType::TEST_ACTOR_RUNTIME;
}
TStrandingActorDecorator(const TActorId& delegatee, bool isSync, const TVector<TActorId>& additionalActors,