From fdc3d77c44fb8099d04b11c8efb3b1945bcc29ce Mon Sep 17 00:00:00 2001 From: Zdenek Dohnal Date: Wed, 12 Oct 2022 15:08:12 +0200 Subject: [PATCH] runtest.sh: Feature set for Vi is now called Tiny --- Sanity/vim-aliases/runtest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sanity/vim-aliases/runtest.sh b/Sanity/vim-aliases/runtest.sh index fa062bb..3a73cdf 100755 --- a/Sanity/vim-aliases/runtest.sh +++ b/Sanity/vim-aliases/runtest.sh @@ -98,11 +98,11 @@ rlJournalStart do rlLog "$shell: Running $app" $shell -c "$app --version > out" - rlAssertGrep 'Small version without GUI' out + rlAssertGrep 'Tiny version without GUI' out rlLog "$shell: Running $app under sudo" sudo $shell -c "$app --version > sudo_out" - rlAssertGrep 'Small version without GUI' sudo_out + rlAssertGrep 'Tiny version without GUI' sudo_out done rlLog "--------------------------------------------------------------"