From 16b4a4fa808efa1f9df42fe559cf4736033cfd89 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 27 Nov 2021 07:49:32 +0530 Subject: [PATCH] Forgot to change test for new zsh shell integration code --- kitty_tests/check_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/check_build.py b/kitty_tests/check_build.py index 211f89e86..667d349f0 100644 --- a/kitty_tests/check_build.py +++ b/kitty_tests/check_build.py @@ -53,7 +53,7 @@ class TestBuild(BaseTest): from kitty.constants import ( logo_png_file, shell_integration_dir, terminfo_dir ) - zsh = os.path.join(shell_integration_dir, 'kitty.zsh') + zsh = os.path.join(shell_integration_dir, 'zsh') self.assertTrue(os.path.isdir(terminfo_dir), f'Terminfo dir: {terminfo_dir}') self.assertTrue(os.path.exists(logo_png_file), f'Logo file: {logo_png_file}') self.assertTrue(os.path.exists(zsh), f'Shell integration: {zsh}')