summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp b/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp
index 707052da387..a68c02e1311 100644
--- a/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp
+++ b/ydb/core/tx/schemeshard/ut_index/ut_async_index.cpp
@@ -31,11 +31,12 @@ Y_UNIT_TEST_SUITE(TAsyncIndexTests) {
)");
env.TestWaitNotification(runtime, txId);
- TestDescribeResult(DescribePrivatePath(runtime, "/MyRoot/Table/UserDefinedIndex"),
- {NLs::PathExist,
- NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
- NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
- NLs::IndexKeys({"indexed"})});
+ TestDescribeResult(DescribePrivatePath(runtime, "/MyRoot/Table/UserDefinedIndex"),{
+ NLs::PathExist,
+ NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
+ NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
+ NLs::IndexKeys({"indexed"}),
+ });
}
Y_UNIT_TEST(OnlineBuild) {
@@ -525,10 +526,10 @@ Y_UNIT_TEST_SUITE(TAsyncIndexTests) {
env.TestWaitNotification(runtime, txId);
TestDescribeResult(DescribePrivatePath(runtime, "/MyRoot/Table/UserDefinedIndex"), {
- NLs::PathExist,
- NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
- NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
- NLs::IndexKeys({"indexed"}),
+ NLs::PathExist,
+ NLs::IndexType(NKikimrSchemeOp::EIndexTypeGlobalAsync),
+ NLs::IndexState(NKikimrSchemeOp::EIndexStateReady),
+ NLs::IndexKeys({"indexed"}),
});
}
}