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 8ac80af commit 3b7abcfCopy full SHA for 3b7abcf
unittests/test_comments.py
@@ -51,7 +51,7 @@ def test(self):
51
self.assertIn("comment", dir(tenumeration))
52
if tenumeration.comment.text:
53
self.assertEqual(['/// Outside Class enum comment'],
54
- tenumeration.comment.text)
+ tenumeration.comment.text)
55
56
tclass = tnamespace.class_("test")
57
self.assertIn("comment", dir(tclass))
@@ -62,7 +62,7 @@ def test(self):
62
self.assertIn("comment", dir(tcls_enumeration))
63
if tcls_enumeration.comment.text:
64
self.assertEqual(['/// inside class enum comment'],
65
- tcls_enumeration.comment.text)
+ tcls_enumeration.comment.text)
66
67
tmethod = tclass.member_functions()[0]
68
0 commit comments