From 6f147544d25c9f459c9dffc935b58aab5bfc91be Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 10 Sep 2022 07:21:15 +0530 Subject: [PATCH] Add ! to env var serialization test --- kitty_tests/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/ssh.py b/kitty_tests/ssh.py index 7b3bdbebb..d01c787d5 100644 --- a/kitty_tests/ssh.py +++ b/kitty_tests/ssh.py @@ -149,7 +149,7 @@ def touch(p): self.ae(len(glob.glob(f'{remote_home}/{tname}/*/xterm-kitty')), 2) def test_ssh_env_vars(self): - tset = '$A-$(echo no)-`echo no2` "something\nelse"' + tset = '$A-$(echo no)-`echo no2` !Q5 "something\nelse"' for sh in self.all_possible_sh: with self.subTest(sh=sh), tempfile.TemporaryDirectory() as tdir: os.mkdir(os.path.join(tdir, 'cwd'))