We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c007c4 commit 724d8a4Copy full SHA for 724d8a4
test/test_section.py
@@ -968,13 +968,13 @@ def test_export_leaf(self):
968
969
ex2 = second.export_leaf()
970
self.assertEqual(len(ex2.sections), 1)
971
- self.assertEqual(len(ex2['first'].properties), 0)
+ self.assertEqual(len(ex2['first'].properties), 2)
972
self.assertEqual(len(ex2['first'].sections), 1)
973
self.assertEqual(len(ex2['first']['second'].properties), 1)
974
975
ex3 = third.export_leaf()
976
self.assertEqual(len(ex3.sections), 1)
977
- self.assertEqual(len(ex3['first'].properties), 0)
+ self.assertEqual(len(ex3['first'].properties), 2)
978
self.assertEqual(len(ex3['first'].sections), 1)
979
self.assertEqual(len(ex3['first']['third']), 0)
980
0 commit comments