summaryrefslogtreecommitdiffstats
path: root/library/cpp/actors/testlib/test_runtime.cpp
diff options
context:
space:
mode:
authorvartyukh <[email protected]>2022-02-10 16:50:16 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:50:16 +0300
commit18f9abdade80b500b7ea1ef2d286e2465a1c8466 (patch)
treed2bebd1789fee0b44b94e11ee90b1634b9fcdfbe /library/cpp/actors/testlib/test_runtime.cpp
parentc0fb261e6889e12b418ebcdfdb3c990a4b39fd75 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/actors/testlib/test_runtime.cpp')
-rw-r--r--library/cpp/actors/testlib/test_runtime.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/actors/testlib/test_runtime.cpp b/library/cpp/actors/testlib/test_runtime.cpp
index 6fa25b99656..be1a85ff708 100644
--- a/library/cpp/actors/testlib/test_runtime.cpp
+++ b/library/cpp/actors/testlib/test_runtime.cpp
@@ -1702,18 +1702,18 @@ namespace NActors {
}
TActorSystem* TTestActorRuntimeBase::GetAnyNodeActorSystem() {
- for (auto& x : Nodes) {
- return x.second->ActorSystem.Get();
- }
+ for (auto& x : Nodes) {
+ return x.second->ActorSystem.Get();
+ }
Y_FAIL("Don't use this method.");
- }
-
+ }
+
TActorSystem* TTestActorRuntimeBase::GetActorSystem(ui32 nodeId) {
auto it = Nodes.find(GetNodeId(nodeId));
Y_VERIFY(it != Nodes.end());
return it->second->ActorSystem.Get();
}
-
+
TEventMailBox& TTestActorRuntimeBase::GetMailbox(ui32 nodeId, ui32 hint) {
TGuard<TMutex> guard(Mutex);