Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
swalrus1 committed Nov 29, 2024
1 parent 3f1f361 commit f73c70c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/core/tx/schemeshard/ut_ttl/ut_ttl_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ using namespace NSchemeShard;

Y_UNIT_TEST_SUITE(TSchemeShardTTLUtility) {
void TestValidateTiers(const std::vector<NKikimrSchemeOp::TTTLSettings::TTier>& tiers, const TConclusionStatus& expectedResult) {
NKikimrSchemeOp::TTTLSettings::TEnabled input;
google::protobuf::RepeatedPtrField<NKikimrSchemeOp::TTTLSettings_TTier> input;
for (const auto& tier : tiers) {
*input.AddTiers() = tier;
input.Add()->CopyFrom(tier);
}

TString error;
Expand Down

0 comments on commit f73c70c

Please sign in to comment.