summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlnaz Nizametdinov <[email protected]>2026-07-20 17:07:06 +0300
committerGitHub <[email protected]>2026-07-20 17:07:06 +0300
commit9928dd679797ee46be45d31249cdab3e5951735b (patch)
tree87ea34fc88666d0eb6a28f2c168c59ed9c348fcd
parent8db88b3551ef0a9bae61a5fcfa66c9e050b45a40 (diff)
Fix `TSchemeShardSubDomainTest.SimultaneousCreate*` (#47210)
-rw-r--r--ydb/core/tx/schemeshard/ut_subdomain/ut_subdomain.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ydb/core/tx/schemeshard/ut_subdomain/ut_subdomain.cpp b/ydb/core/tx/schemeshard/ut_subdomain/ut_subdomain.cpp
index 155b860147b..f81b7a8d084 100644
--- a/ydb/core/tx/schemeshard/ut_subdomain/ut_subdomain.cpp
+++ b/ydb/core/tx/schemeshard/ut_subdomain/ut_subdomain.cpp
@@ -1206,10 +1206,10 @@ Y_UNIT_TEST_SUITE(TSchemeShardSubDomainTest) {
"KeyColumnNames: [\"RowId\"]"
);
- env.TestWaitNotification(runtime, {100, 101});
+ env.TestWaitNotification(runtime, {txId - 2, txId - 1});
TestDescribeResult(DescribePath(runtime, "/MyRoot/USER_0"),
{LsCheckSubDomainParamsInMassiveCase("USER_0", subdomainPathId),
- NLs::PathVersionEqual(4),
+ NLs::PathVersionEqual(5),
NLs::PathsInsideDomain(1),
NLs::ShardsInsideDomain(7)});
@@ -1309,10 +1309,10 @@ Y_UNIT_TEST_SUITE(TSchemeShardSubDomainTest) {
"KeyColumnNames: [\"RowId\"]"
);
- env.TestWaitNotification(runtime, {100, 101, 102});
+ env.TestWaitNotification(runtime, {txId - 3, txId - 2, txId - 1});
TestDescribeResult(DescribePath(runtime, "/MyRoot/USER_0"),
{LsCheckSubDomainParamsInMassiveCase("USER_0", subdomainPathId),
- NLs::PathVersionEqual(5),
+ NLs::PathVersionEqual(6),
NLs::PathsInsideDomain(2),
NLs::ShardsInsideDomain(7)});
@@ -1320,7 +1320,7 @@ Y_UNIT_TEST_SUITE(TSchemeShardSubDomainTest) {
{NLs::InSubdomain});
TestForceDropSubDomain(runtime, txId++, "/MyRoot", "USER_0");
- env.TestWaitNotification(runtime, 103);
+ env.TestWaitNotification(runtime, txId - 1);
TestDescribeResult(DescribePath(runtime, "/MyRoot/USER_0"),
{NLs::PathNotExist});