Skip to content

Commit f58de21

Browse files
committed
[lldb][Test] TestVSCode_completions.py: fix expected type strings
Fixes build failures following https://reviews.llvm.org/D141828
1 parent 9bcef91 commit f58de21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/tools/lldb-vscode/completions/TestVSCode_completions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_completions(self):
4141
[
4242
{
4343
"text": "var",
44-
"label": "var -- vector<basic_string<char, char_traits<char>, allocator<char>>, allocator<basic_string<char, char_traits<char>, allocator<char>>>> &",
44+
"label": "var -- vector<basic_string<char> > &",
4545
}
4646
],
4747
[{"text": "var1", "label": "var1 -- int &"}],
@@ -66,7 +66,7 @@ def test_completions(self):
6666
[
6767
{
6868
"text": "var",
69-
"label": "var -- vector<basic_string<char, char_traits<char>, allocator<char> >, allocator<basic_string<char, char_traits<char>, allocator<char> > > > &",
69+
"label": "var -- vector<basic_string<char> > &",
7070
}
7171
],
7272
)

0 commit comments

Comments
 (0)