Skip to content

Commit 73975fd

Browse files
svs-quicMichael137
authored andcommitted
[LLDB] Fix test failure introduced by llvm#83234 (llvm#83406)
Missed adding a . in the test check (cherry picked from commit ee297a7)
1 parent 9c9892d commit 73975fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/functionalities/completion/TestCompletion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def do_test_variable_completion(self, command):
6565
self.complete_from_to(f"{command} fooo.dd", f"{command} fooo.dd")
6666

6767
self.complete_from_to(f"{command} ptr_fooo->", f"{command} ptr_fooo->t")
68-
self.complete_from_to(f"{command} ptr_fooo->t", f"{command} ptr_fooo->t.x")
68+
self.complete_from_to(f"{command} ptr_fooo->t.", f"{command} ptr_fooo->t.x")
6969
self.complete_from_to(f"{command} ptr_fooo->dd", f"{command} ptr_fooo->dd")
7070

7171
self.complete_from_to(f"{command} cont", f"{command} container")

0 commit comments

Comments
 (0)