diff options
author | AlexSm <alex@ydb.tech> | 2023-12-27 23:31:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 23:31:58 +0100 |
commit | d67bfb4b4b7549081543e87a31bc6cb5c46ac973 (patch) | |
tree | 8674f2f1570877cb653e7ddcff37ba00288de15a /library/python/cyson/ut | |
parent | 1f6bef05ed441c3aa2d565ac792b26cded704ac7 (diff) | |
download | ydb-d67bfb4b4b7549081543e87a31bc6cb5c46ac973.tar.gz |
Import libs 4 (#758)
Diffstat (limited to 'library/python/cyson/ut')
-rw-r--r-- | library/python/cyson/ut/test_unsigned_long.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/python/cyson/ut/test_unsigned_long.py b/library/python/cyson/ut/test_unsigned_long.py index 3cd4ffe440..f5d6a1e2e6 100644 --- a/library/python/cyson/ut/test_unsigned_long.py +++ b/library/python/cyson/ut/test_unsigned_long.py @@ -27,6 +27,8 @@ UN = UInt(N) def test_uint64_initialization(): assert UInt(2**63 - 1) == 2**63 - 1 assert UInt() == UInt(0) == 0 + assert UInt(1) == 1 + assert UInt(2) == 2 assert UInt(long(78)) == 78 assert UInt(23.57) == 23 assert UInt('111') == 111 |