diff options
author | pozhilov <pozhilov@yandex-team.ru> | 2022-02-10 16:49:27 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:27 +0300 |
commit | 23bf1d16dddf213a6aa8e8d5c8621e1242a1f118 (patch) | |
tree | ed030ff443eb83431f11e53b6460b1b73d035412 /library/cpp/scheme/tests | |
parent | 7156b3713e77ce36387436e5558320917698b7a2 (diff) | |
download | ydb-23bf1d16dddf213a6aa8e8d5c8621e1242a1f118.tar.gz |
Restoring authorship annotation for <pozhilov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/scheme/tests')
-rw-r--r-- | library/cpp/scheme/tests/ut/scheme_ut.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/scheme/tests/ut/scheme_ut.cpp b/library/cpp/scheme/tests/ut/scheme_ut.cpp index 1a5d07c31b..dec50ce926 100644 --- a/library/cpp/scheme/tests/ut/scheme_ut.cpp +++ b/library/cpp/scheme/tests/ut/scheme_ut.cpp @@ -200,9 +200,9 @@ Y_UNIT_TEST_SUITE(TSchemeTest) { } { NSc::TValue v; - UNIT_ASSERT(v.IsNull()); + UNIT_ASSERT(v.IsNull()); v = t; - UNIT_ASSERT(!v.IsNull()); + UNIT_ASSERT(!v.IsNull()); UNIT_ASSERT_VALUES_EQUAL_C(expectnum, v.IsNumber(), ss); UNIT_ASSERT_VALUES_EQUAL_C(expectint, v.IsIntNumber(), ss); UNIT_ASSERT_VALUES_EQUAL_C(expectbool, v.IsBool(), ss); @@ -572,7 +572,7 @@ Y_UNIT_TEST_SUITE(TSchemeTest) { = NSc::NImpl::TSelfLoopContext::EMode::Stderr; NSc::TValue x; - + x["a"]["x"] = x; x["b"][0] = x; |