mirror of https://github.com/microsoft/clang.git
[libclang] Fix python tests
It was broken in r286421 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288582 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
012b8f13a3
commit
5cd7433511
|
@ -375,7 +375,7 @@ def test_get_tokens():
|
|||
foo = get_cursor(tu, 'foo')
|
||||
|
||||
tokens = list(foo.get_tokens())
|
||||
assert len(tokens) == 7
|
||||
assert len(tokens) == 6
|
||||
assert tokens[0].spelling == 'int'
|
||||
assert tokens[1].spelling == 'foo'
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ def test_token_to_cursor():
|
|||
r = tu.get_extent('t.c', (0, 9))
|
||||
tokens = list(tu.get_tokens(extent=r))
|
||||
|
||||
assert len(tokens) == 5
|
||||
assert len(tokens) == 4
|
||||
assert tokens[1].spelling == 'i'
|
||||
assert tokens[1].kind == TokenKind.IDENTIFIER
|
||||
|
||||
|
|
Loading…
Reference in New Issue