aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/env_ut.cpp
diff options
context:
space:
mode:
authorArslan Urtashev <urtashev@gmail.com>2022-02-10 16:48:55 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:55 +0300
commitb97740540e7302cec9efa181e106ae1990a0cc1c (patch)
tree1a2a0bfe523c3272d207e2d75254a41d3945a3bb /util/system/env_ut.cpp
parent31789673dc3562bc7540e00fe031ba84ae282c24 (diff)
downloadydb-b97740540e7302cec9efa181e106ae1990a0cc1c.tar.gz
Restoring authorship annotation for Arslan Urtashev <urtashev@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'util/system/env_ut.cpp')
-rw-r--r--util/system/env_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/system/env_ut.cpp b/util/system/env_ut.cpp
index e03cc01658..5b34b3ea64 100644
--- a/util/system/env_ut.cpp
+++ b/util/system/env_ut.cpp
@@ -10,11 +10,11 @@ Y_UNIT_TEST_SUITE(EnvTest) {
TString def = "Some default value for env var";
// first of all, it should be clear
UNIT_ASSERT_VALUES_EQUAL(GetEnv(key), TString());
- UNIT_ASSERT_VALUES_EQUAL(GetEnv(key, def), def);
+ UNIT_ASSERT_VALUES_EQUAL(GetEnv(key, def), def);
SetEnv(key, value);
// set and see what value we get here
UNIT_ASSERT_VALUES_EQUAL(GetEnv(key), value);
- UNIT_ASSERT_VALUES_EQUAL(GetEnv(key, def), value);
+ UNIT_ASSERT_VALUES_EQUAL(GetEnv(key, def), value);
// set empty value
SetEnv(key, TString());
UNIT_ASSERT_VALUES_EQUAL(GetEnv(key), TString());