diff options
Diffstat (limited to 'library/cpp/scheme/tests/ut/scheme_ut.cpp')
-rw-r--r-- | library/cpp/scheme/tests/ut/scheme_ut.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/scheme/tests/ut/scheme_ut.cpp b/library/cpp/scheme/tests/ut/scheme_ut.cpp index 1a5d07c31b..a8b829b6e1 100644 --- a/library/cpp/scheme/tests/ut/scheme_ut.cpp +++ b/library/cpp/scheme/tests/ut/scheme_ut.cpp @@ -756,7 +756,7 @@ Y_UNIT_TEST_SUITE(TSchemeTest) { TValue v = TValue::FromJson("{foo:bar}"); TValue w(std::move(v)); UNIT_ASSERT(v.IsNull()); - v = static_cast<TValue&>(v); + v = static_cast<TValue&>(v); UNIT_ASSERT(v.IsNull()); UNIT_ASSERT_VALUES_EQUAL(w.Get("foo").GetString(), "bar"); v = std::move(w); |