diff options
author | mikhnenko <mikhnenko@yandex-team.com> | 2024-10-04 09:58:47 +0300 |
---|---|---|
committer | mikhnenko <mikhnenko@yandex-team.com> | 2024-10-04 10:14:38 +0300 |
commit | 9ad2894d3a432775a19303a5e8b7a79092017963 (patch) | |
tree | 5e53ebb5a41c45938a332cb8f13ed320047411b5 /library/cpp/codecs/ut/tls_cache_ut.cpp | |
parent | 8b94a751187ed4a463b7f37023098505492d4574 (diff) | |
download | ydb-9ad2894d3a432775a19303a5e8b7a79092017963.tar.gz |
Remove Size, Empty and Data usages from library
commit_hash:ef5ad4cfa9e68bbfc586492e8c376c732d0a48af
Diffstat (limited to 'library/cpp/codecs/ut/tls_cache_ut.cpp')
-rw-r--r-- | library/cpp/codecs/ut/tls_cache_ut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/codecs/ut/tls_cache_ut.cpp b/library/cpp/codecs/ut/tls_cache_ut.cpp index 8e808cfadb..aed834101a 100644 --- a/library/cpp/codecs/ut/tls_cache_ut.cpp +++ b/library/cpp/codecs/ut/tls_cache_ut.cpp @@ -27,7 +27,7 @@ Y_UNIT_TEST(TestAcquireReleaseReuse) { // expecting it zero sized but having the same memory auto buf2 = factory.Item(); UNIT_ASSERT_VALUES_EQUAL(buf2.Get().Size(), 0u); - buf2.Get().Resize(TStringBuf("Buffer_02").Size()); + buf2.Get().Resize(TStringBuf("Buffer_02").size()); UNIT_ASSERT_EQUAL(AsStringBuf(buf2.Get()), "Buffer_02"); } // when the factory dies we should see no leaks |