summaryrefslogtreecommitdiffstats
path: root/bindings/python/tests
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-02-14 10:02:57 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-02-14 10:02:57 +0000
commitd52864bd33c66aacc84133460d8c9c0dfcdd5c18 (patch)
tree70ca9af6f2021bcbe3711f084583e35822c5bd04 /bindings/python/tests
parent19e4a07e7317eacf88247614c97f11ab93409a04 (diff)
CIndex: Switch CXSourceRange to proper half-open intervals.
- Doug, please review. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96162 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python/tests')
-rw-r--r--bindings/python/tests/cindex/test_diagnostics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/tests/cindex/test_diagnostics.py b/bindings/python/tests/cindex/test_diagnostics.py
index 58fd9e5384..8518765291 100644
--- a/bindings/python/tests/cindex/test_diagnostics.py
+++ b/bindings/python/tests/cindex/test_diagnostics.py
@@ -44,5 +44,5 @@ def test_diagnostic_fixit():
assert tu.diagnostics[0].fixits[0].range.start.line == 1
assert tu.diagnostics[0].fixits[0].range.start.column == 26
assert tu.diagnostics[0].fixits[0].range.end.line == 1
- assert tu.diagnostics[0].fixits[0].range.end.column == 29
+ assert tu.diagnostics[0].fixits[0].range.end.column == 30
assert tu.diagnostics[0].fixits[0].value == '.f0 = '