summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/yson_string/unittests/saveload_ut.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/yt/yson_string/unittests/saveload_ut.cpp')
-rw-r--r--library/cpp/yt/yson_string/unittests/saveload_ut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/yson_string/unittests/saveload_ut.cpp b/library/cpp/yt/yson_string/unittests/saveload_ut.cpp
index a7700fb2ff6..bcb1bfa196b 100644
--- a/library/cpp/yt/yson_string/unittests/saveload_ut.cpp
+++ b/library/cpp/yt/yson_string/unittests/saveload_ut.cpp
@@ -31,7 +31,7 @@ TEST(TYsonStringTest, SaveLoadString)
TEST(TYsonStringTest, SaveLoadSharedRef)
{
- auto ref = TSharedRef::FromString("My tests data");
+ auto ref = TSharedRef::FromString(std::string("My tests data"));
const TYsonString expected(ref);
TStringStream s;
::Save(&s, expected);