diff options
author | mstebelev <mstebelev@yandex-team.ru> | 2022-02-10 16:47:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:17 +0300 |
commit | 5a176099114d03d5669e95a55a3a514bd24dd8b1 (patch) | |
tree | 13d2cd27a59ccff4e44d7c7f530f923483f82267 /util/generic/string_ut.pyx | |
parent | 3c1fe03778c21d7aa4a5c4a4433ca611dbf2f785 (diff) | |
download | ydb-5a176099114d03d5669e95a55a3a514bd24dd8b1.tar.gz |
Restoring authorship annotation for <mstebelev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/string_ut.pyx')
-rw-r--r-- | util/generic/string_ut.pyx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/string_ut.pyx b/util/generic/string_ut.pyx index 5407f5b4c1..8791f9bc83 100644 --- a/util/generic/string_ut.pyx +++ b/util/generic/string_ut.pyx @@ -10,11 +10,11 @@ import sys class TestStroka(unittest.TestCase): - def test_unicode(self): - cdef TString x = "привет" - self.assertEquals(x, "привет") - + def test_unicode(self): + cdef TString x = "привет" + self.assertEquals(x, "привет") + def test_ctor1(self): cdef TString tmp = TString() cdef TString tmp2 = TString(tmp) |