Skip to content

Commit 3b7abcf

Browse files
committed
Fix style errors.
1 parent 8ac80af commit 3b7abcf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unittests/test_comments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test(self):
5151
self.assertIn("comment", dir(tenumeration))
5252
if tenumeration.comment.text:
5353
self.assertEqual(['/// Outside Class enum comment'],
54-
tenumeration.comment.text)
54+
tenumeration.comment.text)
5555

5656
tclass = tnamespace.class_("test")
5757
self.assertIn("comment", dir(tclass))
@@ -62,7 +62,7 @@ def test(self):
6262
self.assertIn("comment", dir(tcls_enumeration))
6363
if tcls_enumeration.comment.text:
6464
self.assertEqual(['/// inside class enum comment'],
65-
tcls_enumeration.comment.text)
65+
tcls_enumeration.comment.text)
6666

6767
tmethod = tclass.member_functions()[0]
6868

0 commit comments

Comments
 (0)