]> granicus.if.org Git - clang/commitdiff
Try to update the test to fix the breakage
authorSylvestre Ledru <sylvestre@debian.org>
Thu, 13 Dec 2018 17:39:02 +0000 (17:39 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Thu, 13 Dec 2018 17:39:02 +0000 (17:39 +0000)
With the new warning, we are showing one more output in the test.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@349064 91177308-0d34-0410-b5e6-96231b3b80d8

bindings/python/tests/cindex/test_diagnostics.py

index 79d7a5fd411d22431db93861df7bf1d9ecdcdee5..248cf9456987b7701a92bfb01fda1836534e8d55 100644 (file)
@@ -15,7 +15,7 @@ import unittest
 class TestDiagnostics(unittest.TestCase):
     def test_diagnostic_warning(self):
         tu = get_tu('int f0() {}\n')
-        self.assertEqual(len(tu.diagnostics), 1)
+        self.assertEqual(len(tu.diagnostics), 2)
         self.assertEqual(tu.diagnostics[0].severity, Diagnostic.Warning)
         self.assertEqual(tu.diagnostics[0].location.line, 1)
         self.assertEqual(tu.diagnostics[0].location.column, 11)