We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d35e047 commit 868b113Copy full SHA for 868b113
1 file changed
tests/compas/datastructures/test_datastructure.py
@@ -85,6 +85,7 @@ def __from_data__(cls, data):
85
86
87
def test_mro_fallback(level2):
88
+ print(level2.__jsondump__())
89
assert level2.__jsondump__()["dtype"] == "test_datastructure/Level2"
90
# Level2 should serialize Level1 into the mro
91
assert level2.__jsondump__()["mro"] == ["test_datastructure/Level1"]
@@ -104,6 +105,7 @@ def test_mro_fallback(level2):
104
105
106
107
def test_mro_fallback_multi_level(level3):
108
+ print(level3.__jsondump__())
109
assert level3.__jsondump__()["dtype"] == "test_datastructure/Level3"
110
# Level3 should serialize Level2 and Level1 into the mro
111
assert level3.__jsondump__()["mro"] == ["test_datastructure/Level2", "test_datastructure/Level1"]
0 commit comments