diff options
author | Ilya Biryukov <ibiryukov@google.com> | 2019-05-06 14:56:24 +0000 |
---|---|---|
committer | Ilya Biryukov <ibiryukov@google.com> | 2019-05-06 14:56:24 +0000 |
commit | 209b1380799efbfef7e9fa398780823cfbc64844 (patch) | |
tree | 26cf5b7a8b616866a55f1daf4b7a1aac22b5913d /clang | |
parent | 2a0ef0530beec95e29198d311348c65717acdc2b (diff) | |
download | llvm-209b1380799efbfef7e9fa398780823cfbc64844.zip llvm-209b1380799efbfef7e9fa398780823cfbc64844.tar.gz llvm-209b1380799efbfef7e9fa398780823cfbc64844.tar.bz2 |
[CodeComplete] Update python tests after r360042
llvm-svn: 360048
Diffstat (limited to 'clang')
-rw-r--r-- | clang/bindings/python/tests/cindex/test_code_completion.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/bindings/python/tests/cindex/test_code_completion.py b/clang/bindings/python/tests/cindex/test_code_completion.py index e0b4157..1603d3d 100644 --- a/clang/bindings/python/tests/cindex/test_code_completion.py +++ b/clang/bindings/python/tests/cindex/test_code_completion.py @@ -41,7 +41,7 @@ void f() { expected = [ "{'int', ResultType} | {'test1', TypedText} || Priority: 50 || Availability: Available || Brief comment: Aaa.", "{'void', ResultType} | {'test2', TypedText} | {'(', LeftParen} | {')', RightParen} || Priority: 50 || Availability: Available || Brief comment: Bbb.", - "{'return', TypedText} || Priority: 40 || Availability: Available || Brief comment: None" + "{'return', TypedText} | {';', SemiColon} || Priority: 40 || Availability: Available || Brief comment: None" ] self.check_completion_results(cr, expected) @@ -67,7 +67,7 @@ void f() { expected = [ "{'int', ResultType} | {'test1', TypedText} || Priority: 50 || Availability: Available || Brief comment: Aaa.", "{'void', ResultType} | {'test2', TypedText} | {'(', LeftParen} | {')', RightParen} || Priority: 50 || Availability: Available || Brief comment: Bbb.", - "{'return', TypedText} || Priority: 40 || Availability: Available || Brief comment: None" + "{'return', TypedText} | {';', SemiColon} || Priority: 40 || Availability: Available || Brief comment: None" ] self.check_completion_results(cr, expected) |