aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_utf8.vim
diff options
context:
space:
mode:
authorSean Dewar <seandewar@users.noreply.github.com>2021-08-31 23:49:43 +0100
committerSean Dewar <seandewar@users.noreply.github.com>2021-10-03 20:06:33 +0100
commit86593beaa40035a10a664d3147327a01f4885cb7 (patch)
tree9a305c6bc4c1497bc9c40d38e059a6593c0d363b /src/nvim/testdir/test_utf8.vim
parent59c8a1fd5158886cb13b56070ebf15259d12eba2 (diff)
downloadrneovim-86593beaa40035a10a664d3147327a01f4885cb7.tar.gz
rneovim-86593beaa40035a10a664d3147327a01f4885cb7.tar.bz2
rneovim-86593beaa40035a10a664d3147327a01f4885cb7.zip
feat(eval/method): partially port v8.1.1954
Does not include listener_*() functions. js_*() functions are N/A. json_encode() and json_decode() didn't include tests; add some anyway (to json_functions_spec.lua). test_lua.vim isn't included yet, so add tests to luaeval_spec.lua.
Diffstat (limited to 'src/nvim/testdir/test_utf8.vim')
-rw-r--r--src/nvim/testdir/test_utf8.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_utf8.vim b/src/nvim/testdir/test_utf8.vim
index 735efac36d..da72da087f 100644
--- a/src/nvim/testdir/test_utf8.vim
+++ b/src/nvim/testdir/test_utf8.vim
@@ -111,7 +111,7 @@ func Test_list2str_str2list_utf8()
let s = "\u304b\u3099\u3044"
let l = [0x304b, 0x3099, 0x3044]
call assert_equal(l, str2list(s, 1))
- call assert_equal(s, list2str(l, 1))
+ call assert_equal(s, l->list2str(1))
if &enc ==# 'utf-8'
call assert_equal(str2list(s), str2list(s, 1))
call assert_equal(list2str(l), list2str(l, 1))