Author: Aaron Ballman
Date: 2020-02-18T11:39:23-05:00
New Revision: 66c01627719f088bff9a0d09655a8ca0842b2c82

URL: 
https://github.com/llvm/llvm-project/commit/66c01627719f088bff9a0d09655a8ca0842b2c82
DIFF: 
https://github.com/llvm/llvm-project/commit/66c01627719f088bff9a0d09655a8ca0842b2c82.diff

LOG: Hopefully fixing a failing build bot.

Should fix the changes from 260b91f379c8f86d3d6008648b3f2a945a007888.

Added: 
    

Modified: 
    clang/bindings/python/tests/cindex/test_diagnostics.py

Removed: 
    


################################################################################
diff  --git a/clang/bindings/python/tests/cindex/test_diagnostics.py 
b/clang/bindings/python/tests/cindex/test_diagnostics.py
index 52928db73035..64d0ca2ef9bc 100644
--- a/clang/bindings/python/tests/cindex/test_diagnostics.py
+++ b/clang/bindings/python/tests/cindex/test_diagnostics.py
@@ -100,7 +100,7 @@ def test_diagnostic_children(self):
         self.assertRegexpMatches(children[0].spelling,
                 '.*declared here')
         self.assertEqual(children[0].location.line, 1)
-        self.assertEqual(children[0].location.column, 1)
+        self.assertEqual(children[0].location.column, 6)
 
     def test_diagnostic_string_repr(self):
         tu = get_tu('struct MissingSemicolon{}')


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to