diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-05 09:00:35 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-05-05 09:20:30 +0800 |
commit | bdaaf2e8e113f8c32c70f83b60e0bf3f648357c1 (patch) | |
tree | 04ab960fec3aaaf6d139164e27ee8c4c6ff8f900 /test/functional/legacy/glob2regpat_spec.lua | |
parent | 15c502d8be0e9a43372a4357fdc34a5b59169798 (diff) | |
download | rneovim-bdaaf2e8e113f8c32c70f83b60e0bf3f648357c1.tar.gz rneovim-bdaaf2e8e113f8c32c70f83b60e0bf3f648357c1.tar.bz2 rneovim-bdaaf2e8e113f8c32c70f83b60e0bf3f648357c1.zip |
vim-patch:9.0.0250: slightly inconsistent error messages
Problem: Slightly inconsistent error messages.
Solution: Make it "Using a Float". (closes vim/vim#10959)
https://github.com/vim/vim/commit/dde77a7c4d72622284dc5fb72557bde42c314fa6
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'test/functional/legacy/glob2regpat_spec.lua')
-rw-r--r-- | test/functional/legacy/glob2regpat_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/glob2regpat_spec.lua b/test/functional/legacy/glob2regpat_spec.lua index c442c628c2..1771f12f85 100644 --- a/test/functional/legacy/glob2regpat_spec.lua +++ b/test/functional/legacy/glob2regpat_spec.lua @@ -8,7 +8,7 @@ describe('glob2regpat()', function() before_each(clear) it('handles invalid input', function() - eq('Vim(call):E806: Using Float as a String', + eq('Vim(call):E806: Using a Float as a String', exc_exec('call glob2regpat(1.33)')) end) it('returns ^$ for empty input', function() |