Skip to content

Commit d0ffb53

Browse files
authored
[libclang/python] Fix incorrect assert in test (#114395)
This mistake was introduced in #109846
1 parent 2c82079 commit d0ffb53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/bindings/python/tests/cindex/test_cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ class Bar {
344344
)
345345

346346
self.assertEqual(len(copy_assignment_operators_cursors), 10)
347-
self.assertTrue(len(non_copy_assignment_operators_cursors), 9)
347+
self.assertEqual(len(non_copy_assignment_operators_cursors), 7)
348348

349349
self.assertTrue(
350350
all(

0 commit comments

Comments
 (0)