diff options
| author | sabdenovch <[email protected]> | 2025-12-12 21:59:02 +0300 |
|---|---|---|
| committer | sabdenovch <[email protected]> | 2025-12-12 22:43:53 +0300 |
| commit | b13998cfa78bc78c2d55b6e2a3de8a7d08eefcd5 (patch) | |
| tree | 045be27d8751341c5a1e6690218da5629b8ab688 /yt/cpp/mapreduce/interface | |
| parent | 00b948376f5de16a83c930b4c9d9e8c84ef445ca (diff) | |
YT-22593: TString -> std::string in unittests
commit_hash:e71661ee774f94e598456363e42562c658cce049
Diffstat (limited to 'yt/cpp/mapreduce/interface')
| -rw-r--r-- | yt/cpp/mapreduce/interface/ut/job_counters_ut.cpp | 2 | ||||
| -rw-r--r-- | yt/cpp/mapreduce/interface/ut/job_statistics_ut.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/yt/cpp/mapreduce/interface/ut/job_counters_ut.cpp b/yt/cpp/mapreduce/interface/ut/job_counters_ut.cpp index 1c887b37e17..5d1ab8e5662 100644 --- a/yt/cpp/mapreduce/interface/ut/job_counters_ut.cpp +++ b/yt/cpp/mapreduce/interface/ut/job_counters_ut.cpp @@ -9,7 +9,7 @@ using namespace NYT; TEST(TJobCountersTest, Full) { - const TString input = R"""( + const TStringBuf input = R"""( { "completed" = { "total" = 6; diff --git a/yt/cpp/mapreduce/interface/ut/job_statistics_ut.cpp b/yt/cpp/mapreduce/interface/ut/job_statistics_ut.cpp index 90d40623c17..e0cf1ed9d7d 100644 --- a/yt/cpp/mapreduce/interface/ut/job_statistics_ut.cpp +++ b/yt/cpp/mapreduce/interface/ut/job_statistics_ut.cpp @@ -9,7 +9,7 @@ using namespace NYT; TEST(TJobStatisticsTest, Simple) { - const TString input = R"""( + const TStringBuf input = R"""( { "data" = { "output" = { @@ -65,7 +65,7 @@ TEST(TJobStatisticsTest, Simple) TEST(TJobStatisticsTest, OtherTypes) { - const TString input = R"""( + const TStringBuf input = R"""( { "time" = { "exec" = { @@ -90,7 +90,7 @@ TEST(TJobStatisticsTest, OtherTypes) TEST(TJobStatisticsTest, Custom) { - const TString input = R"""( + const TStringBuf input = R"""( { "custom" = { "some" = { @@ -140,7 +140,7 @@ TEST(TJobStatisticsTest, Custom) TEST(TJobStatisticsTest, TaskNames) { - const TString input = R"""( + const TStringBuf input = R"""( { "data" = { "output" = { |
