aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pyrsistent/py3
diff options
context:
space:
mode:
authormaxim-yurchuk <maxim-yurchuk@yandex-team.com>2024-10-09 12:29:46 +0300
committermaxim-yurchuk <maxim-yurchuk@yandex-team.com>2024-10-09 13:14:22 +0300
commit9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80 (patch)
treea8fb3181d5947c0d78cf402aa56e686130179049 /contrib/python/pyrsistent/py3
parenta44b779cd359f06c3ebbef4ec98c6b38609d9d85 (diff)
downloadydb-9731d8a4bb7ee2cc8554eaf133bb85498a4c7d80.tar.gz
publishFullContrib: true for ydb
<HIDDEN_URL> commit_hash:c82a80ac4594723cebf2c7387dec9c60217f603e
Diffstat (limited to 'contrib/python/pyrsistent/py3')
-rw-r--r--contrib/python/pyrsistent/py3/patches/01-fix-tests.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/contrib/python/pyrsistent/py3/patches/01-fix-tests.patch b/contrib/python/pyrsistent/py3/patches/01-fix-tests.patch
new file mode 100644
index 0000000000..7302858b09
--- /dev/null
+++ b/contrib/python/pyrsistent/py3/patches/01-fix-tests.patch
@@ -0,0 +1,37 @@
+--- contrib/python/pyrsistent/py3/tests/checked_map_test.py (index)
++++ contrib/python/pyrsistent/py3/tests/checked_map_test.py (working tree)
+@@ -127,8 +127,8 @@ class FloatVector(CheckedPVector):
+
+
+ class VectorToSetMap(CheckedPMap):
+- __key_type__ = 'checked_map_test.FloatVector'
+- __value_type__ = 'checked_map_test.FloatSet'
++ __key_type__ = '__tests__.checked_map_test.FloatVector'
++ __value_type__ = '__tests__.checked_map_test.FloatSet'
+
+
+ def test_type_check_with_string_specification():
+--- contrib/python/pyrsistent/py3/tests/checked_vector_test.py (index)
++++ contrib/python/pyrsistent/py3/tests/checked_vector_test.py (working tree)
+@@ -184,7 +184,7 @@ def test_multiple_optional_types():
+
+
+ class NaturalsVectorStr(CheckedPVector):
+- __type__ = 'checked_vector_test.Naturals'
++ __type__ = '__tests__.checked_vector_test.Naturals'
+
+
+ def test_check_with_string_specification():
+--- contrib/python/pyrsistent/py3/tests/class_test.py (index)
++++ contrib/python/pyrsistent/py3/tests/class_test.py (working tree)
+@@ -271,8 +271,8 @@ class Numbers(CheckedPVector):
+
+
+ class LinkedList(PClass):
+- value = field(type='class_test.Numbers')
+- next = field(type=optional('class_test.LinkedList'))
++ value = field(type='__tests__.class_test.Numbers')
++ next = field(type=optional('__tests__.class_test.LinkedList'))
+
+
+ def test_string_as_type_specifier():