aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/scheme/tests
diff options
context:
space:
mode:
authorpozhilov <pozhilov@yandex-team.ru>2022-02-10 16:49:27 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:27 +0300
commit23bf1d16dddf213a6aa8e8d5c8621e1242a1f118 (patch)
treeed030ff443eb83431f11e53b6460b1b73d035412 /library/cpp/scheme/tests
parent7156b3713e77ce36387436e5558320917698b7a2 (diff)
downloadydb-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.cpp6
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;