Browse Source

Fix build KIKIMR-20673 (#1192)

Ilnaz Nizametdinov 1 year ago
parent
commit
3f3187b0fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ydb/core/tx/datashard/datashard_ut_upload_rows.cpp

+ 1 - 1
ydb/core/tx/datashard/datashard_ut_upload_rows.cpp

@@ -778,7 +778,7 @@ Y_UNIT_TEST_SUITE(TTxDataShardUploadRows) {
         });
 
         auto prevObserverFunc = runtime.SetObserverFunc([&](TAutoPtr<IEventHandle>& ev) {
-            if (ev->GetTypeRewrite() == NDataShard::TEvChangeExchange::EvEnqueueRecords) {
+            if (ev->GetTypeRewrite() == NChangeExchange::TEvChangeExchange::EvEnqueueRecords) {
                 blockedEnqueueRecords.emplace_back(ev.Release());
                 return TTestActorRuntime::EEventAction::DROP;
             }