aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralexvru <alexvru@ydb.tech>2023-12-01 19:19:34 +0300
committeralexvru <alexvru@ydb.tech>2023-12-01 23:04:05 +0300
commitd40be234feb8c33b93629e3be430a2b80d8ec7ae (patch)
tree72ef3c367efffc01172b506a976bda5c02c904dc
parent13ed5e19c5fe8440545c2207a772d60c76587264 (diff)
downloadydb-d40be234feb8c33b93629e3be430a2b80d8ec7ae.tar.gz
Fix UT KIKIMR-19987
-rw-r--r--ydb/core/keyvalue/keyvalue_storage_read_request_ut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/keyvalue/keyvalue_storage_read_request_ut.cpp b/ydb/core/keyvalue/keyvalue_storage_read_request_ut.cpp
index 67e9e828ba..36cc8b6089 100644
--- a/ydb/core/keyvalue/keyvalue_storage_read_request_ut.cpp
+++ b/ydb/core/keyvalue/keyvalue_storage_read_request_ut.cpp
@@ -31,7 +31,7 @@ struct TBlobStorageMockState {
}
std::unique_ptr<TEvBlobStorage::TEvGetResult> MakeGetResult(ui32 groupId, TEvBlobStorage::TEvGet *get,
- std::function<const std::pair<NKikimrProto::EReplyStatus, const TString&>&(TLogoBlobID blobId)> getBlob)
+ std::function<std::pair<NKikimrProto::EReplyStatus, TString>(TLogoBlobID blobId)> getBlob)
{
TGroup &group = Groups[groupId];
if (group.GroupId) {