From e3b8de1ac0e3763d61703fc1f762f4c67f5bf449 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 19 Sep 2022 20:03:29 +0530 Subject: [PATCH] Update test for new exe search --- kitty_tests/completion.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty_tests/completion.py b/kitty_tests/completion.py index d643f177d..dd97e3df6 100644 --- a/kitty_tests/completion.py +++ b/kitty_tests/completion.py @@ -111,7 +111,7 @@ def completion(self: TestCompletion, tdir: str): make_file('sub/exe-not3.png') add('kitty x', all_words()) - add('kitty e', all_words('exe1')) + add('kitty e', all_words('exe1', 'exe2')) add('kitty ./', all_words('./bin/', './sub/', './exe2')) add('kitty ./e', all_words('./exe2')) add('kitty ./s', all_words('./sub/')) @@ -166,7 +166,7 @@ def completion(self: TestCompletion, tdir: str): add('kitty -1 bash ', is_delegate(2, 'bash')) add('kitty -1 bash --n', is_delegate(2, 'bash')) add('kitty @launch --type tab bash --n', is_delegate(4, 'bash')) - add('kitty @launch e', all_words('exe1')) + add('kitty @launch e', all_words('exe1', 'exe2')) for cmd, tests, result in zip(all_cmds, all_tests, run_tool()): self.current_cmd = cmd