Hopefully fixing a failing build bot.

Should fix the changes from 260b91f379.
This commit is contained in:
Aaron Ballman 2020-02-18 11:37:39 -05:00
parent fa7d04a0d3
commit 66c0162771
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class TestDiagnostics(unittest.TestCase):
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{}')