aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorosidorkin <osidorkin@yandex-team.com>2024-05-06 09:08:11 +0300
committerosidorkin <osidorkin@yandex-team.com>2024-05-06 09:19:39 +0300
commitea3609653a3f09a516e0f81fc4503bfc641cc84a (patch)
tree04c14bf79c306fdb4acbde449e6d3f8d5e1a892b
parent9371341c95de0704c65d18ee6137b0873257ea80 (diff)
downloadydb-ea3609653a3f09a516e0f81fc4503bfc641cc84a.tar.gz
YT-21552: Trivial: fix style
d621e2e86dc99dad504edd43d9f14442c8999198
-rw-r--r--yt/yt/client/chaos_client/replication_card.cpp2
-rw-r--r--yt/yt/client/unittests/replication_card_ut.cpp16
2 files changed, 9 insertions, 9 deletions
diff --git a/yt/yt/client/chaos_client/replication_card.cpp b/yt/yt/client/chaos_client/replication_card.cpp
index a4235d6455..fa75f29ccb 100644
--- a/yt/yt/client/chaos_client/replication_card.cpp
+++ b/yt/yt/client/chaos_client/replication_card.cpp
@@ -61,7 +61,7 @@ void FormatProgressWithProjection(
builder->AppendChar(']');
}
-DEFINE_BIT_ENUM_WITH_UNDERLYING_TYPE(EReplicationCardOptionsBits, uint8_t,
+DEFINE_BIT_ENUM_WITH_UNDERLYING_TYPE(EReplicationCardOptionsBits, ui8,
((None)(0))
((IncludeCoordinators)(1 << 0))
((IncludeProgress)(1 << 1))
diff --git a/yt/yt/client/unittests/replication_card_ut.cpp b/yt/yt/client/unittests/replication_card_ut.cpp
index 92bc3a52eb..97a5b32dc6 100644
--- a/yt/yt/client/unittests/replication_card_ut.cpp
+++ b/yt/yt/client/unittests/replication_card_ut.cpp
@@ -39,13 +39,13 @@ INSTANTIATE_TEST_SUITE_P(
.IncludeCoordinators = true,
.IncludeProgress = true,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = true
+ .IncludeReplicatedTableOptions = true,
},
TReplicationCardFetchOptions {
.IncludeCoordinators = false,
.IncludeProgress = false,
.IncludeHistory = false,
- .IncludeReplicatedTableOptions = false
+ .IncludeReplicatedTableOptions = false,
},
true),
std::tuple(
@@ -53,13 +53,13 @@ INSTANTIATE_TEST_SUITE_P(
.IncludeCoordinators = true,
.IncludeProgress = true,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = true
+ .IncludeReplicatedTableOptions = true,
},
TReplicationCardFetchOptions {
.IncludeCoordinators = true,
.IncludeProgress = true,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = true
+ .IncludeReplicatedTableOptions = true,
},
true),
std::tuple(
@@ -67,13 +67,13 @@ INSTANTIATE_TEST_SUITE_P(
.IncludeCoordinators = true,
.IncludeProgress = true,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = true
+ .IncludeReplicatedTableOptions = true,
},
TReplicationCardFetchOptions {
.IncludeCoordinators = true,
.IncludeProgress = false,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = false
+ .IncludeReplicatedTableOptions = false,
},
true),
std::tuple(
@@ -81,13 +81,13 @@ INSTANTIATE_TEST_SUITE_P(
.IncludeCoordinators = true,
.IncludeProgress = false,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = false
+ .IncludeReplicatedTableOptions = false,
},
TReplicationCardFetchOptions {
.IncludeCoordinators = false,
.IncludeProgress = true,
.IncludeHistory = true,
- .IncludeReplicatedTableOptions = false
+ .IncludeReplicatedTableOptions = false,
},
false)
));