Skip to content

Commit 2ccfb99

Browse files
[lldb] Fix term settings completion tests (llvm#139447)
# PR Summary Small PR - Several test functions for `term-width/height` completions had identical names, causing silent overriding. This gives them distinct _width/_height suffixes to ensure all tests run. Signed-off-by: Emmanuel Ferdman <[email protected]>
1 parent 6f4dcae commit 2ccfb99

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -334,22 +334,22 @@ def test_settings_replace_target_ru(self):
334334
"settings replace target.ru", "settings replace target.run-args"
335335
)
336336

337-
def test_settings_show_term(self):
337+
def test_settings_show_term_width(self):
338338
self.complete_from_to("settings show term-w", "settings show term-width")
339339

340-
def test_settings_list_term(self):
340+
def test_settings_list_term_width(self):
341341
self.complete_from_to("settings list term-w", "settings list term-width")
342342

343-
def test_settings_show_term(self):
343+
def test_settings_show_term_height(self):
344344
self.complete_from_to("settings show term-h", "settings show term-height")
345345

346-
def test_settings_list_term(self):
346+
def test_settings_list_term_height(self):
347347
self.complete_from_to("settings list term-h", "settings list term-height")
348348

349-
def test_settings_remove_term(self):
349+
def test_settings_remove_term_width(self):
350350
self.complete_from_to("settings remove term-w", "settings remove term-width")
351351

352-
def test_settings_remove_term(self):
352+
def test_settings_remove_term_height(self):
353353
self.complete_from_to("settings remove term-h", "settings remove term-height")
354354

355355
def test_settings_s(self):

0 commit comments

Comments
 (0)