diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-24 14:25:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 14:25:08 +0800 |
commit | 0b66ab42c76c41494a9d7fc715d310f1a1da929d (patch) | |
tree | 40e4807c0dfd00e37bfa0d01e0a2d9180b4eb5d7 /test | |
parent | eae6727325111e596b49bb04337a467e8833397c (diff) | |
parent | 4587912527f48974e5b339af85db1c74bdd3cb43 (diff) | |
download | rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.tar.gz rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.tar.bz2 rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.zip |
Merge pull request #26642 from famiu/refactor/options/misc
refactor(options): miscellanous refactors
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/ui/screen_basic_spec.lua | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/test/functional/ui/screen_basic_spec.lua b/test/functional/ui/screen_basic_spec.lua index e1358a0335..b4ab3f54ca 100644 --- a/test/functional/ui/screen_basic_spec.lua +++ b/test/functional/ui/screen_basic_spec.lua @@ -618,22 +618,20 @@ local function screen_tests(linegrid) ]]) feed(':set columns=0<CR>') screen:expect([[ - |*5 - {1: }| - {8:E594: Need a}| - {8:t least 12 c}| - {8:olumns: colu}| - {8:mns=0} | - {7:Press ENTER }| - {7:or type comm}| - {7:and to conti}| - {7:nue}^ | + | + {0:~ }|*7 + {1: }| + {8:E594: Need at least }| + {8:12 columns: columns=}| + {8:0} | + {7:Press ENTER or type }| + {7:command to continue}^ | ]]) feed('<CR>') screen:expect([[ - ^ | - {0:~ }|*12 - | + ^ | + {0:~ }|*12 + | ]]) end) end) |