Skip to content

Commit c73267f

Browse files
committed
-
1 parent bf48419 commit c73267f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

source_py2/test_python_toolbox/test_logic_tools/test_get_equivalence_classes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test():
1212
1: {1, 1j},
1313
2: {2, 2j},
1414
3: {3, 3j},
15-
2**0.5: {1 + 1j},
16-
8**0.5: {2 + 2j},
17-
18**0.5: {3 + 3j},
15+
abs(1 + 1j): {1 + 1j},
16+
abs(2 + 2j): {2 + 2j},
17+
abs(3 + 3j): {3 + 3j},
1818
}

source_py3/test_python_toolbox/test_logic_tools/test_get_equivalence_classes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test():
1212
1: {1, 1j},
1313
2: {2, 2j},
1414
3: {3, 3j},
15-
2**0.5: {1 + 1j},
16-
8**0.5: {2 + 2j},
17-
18**0.5: {3 + 3j},
15+
abs(1 + 1j): {1 + 1j},
16+
abs(2 + 2j): {2 + 2j},
17+
abs(3 + 3j): {3 + 3j},
1818
}

source_py3/test_python_toolbox/test_proxy_property.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
'''Testing modules for `python_toolbox.misc_tools.ProxyProperty`.'''
55

6-
7-
86
import uuid
97

108
from python_toolbox import cute_testing

0 commit comments

Comments
 (0)