Skip to content

Commit 868b113

Browse files
committed
check output
1 parent d35e047 commit 868b113

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/compas/datastructures/test_datastructure.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def __from_data__(cls, data):
8585

8686

8787
def test_mro_fallback(level2):
88+
print(level2.__jsondump__())
8889
assert level2.__jsondump__()["dtype"] == "test_datastructure/Level2"
8990
# Level2 should serialize Level1 into the mro
9091
assert level2.__jsondump__()["mro"] == ["test_datastructure/Level1"]
@@ -104,6 +105,7 @@ def test_mro_fallback(level2):
104105

105106

106107
def test_mro_fallback_multi_level(level3):
108+
print(level3.__jsondump__())
107109
assert level3.__jsondump__()["dtype"] == "test_datastructure/Level3"
108110
# Level3 should serialize Level2 and Level1 into the mro
109111
assert level3.__jsondump__()["mro"] == ["test_datastructure/Level2", "test_datastructure/Level1"]

0 commit comments

Comments
 (0)