@@ -246,8 +246,8 @@ class TFixture : public NUnitTest::TBaseFixture {
246
246
ui64 GetTopicTabletId (const TActorId& actorId,
247
247
const TString& topicPath,
248
248
ui32 partition);
249
- TVector<TString > GetTabletKeys (const TActorId& actorId,
250
- ui64 tabletId);
249
+ std::vector<std::string > GetTabletKeys (const TActorId& actorId,
250
+ ui64 tabletId);
251
251
NPQ::TWriteId GetTransactionWriteId (const TActorId& actorId,
252
252
ui64 tabletId);
253
253
void SendLongTxLockStatus (const TActorId& actorId,
@@ -1047,7 +1047,8 @@ ui64 TFixture::GetTopicTabletId(const TActorId& actorId, const TString& topicPat
1047
1047
return Max<ui64>();
1048
1048
}
1049
1049
1050
- TVector<TString> TFixture::GetTabletKeys (const TActorId& actorId, ui64 tabletId)
1050
+ std::vector<std::string> TFixture::GetTabletKeys (const TActorId& actorId,
1051
+ ui64 tabletId)
1051
1052
{
1052
1053
using TEvKeyValue = NKikimr::TEvKeyValue;
1053
1054
@@ -1072,7 +1073,7 @@ TVector<TString> TFixture::GetTabletKeys(const TActorId& actorId, ui64 tabletId)
1072
1073
UNIT_ASSERT_VALUES_EQUAL (response->Record .GetCookie (), 12345 );
1073
1074
UNIT_ASSERT_VALUES_EQUAL (response->Record .ReadRangeResultSize (), 1 );
1074
1075
1075
- TVector<TString > keys;
1076
+ std::vector<std::string > keys;
1076
1077
1077
1078
auto & result = response->Record .GetReadRangeResult (0 );
1078
1079
for (size_t i = 0 ; i < result.PairSize (); ++i) {
@@ -1754,7 +1755,7 @@ void TFixture::CheckTabletKeys(const TString& topicName)
1754
1755
};
1755
1756
1756
1757
bool found;
1757
- TVector<TString > keys;
1758
+ std::vector<std::string > keys;
1758
1759
for (size_t i = 0 ; i < 20 ; ++i) {
1759
1760
keys = GetTabletKeys (edge, tabletId);
1760
1761
0 commit comments