summaryrefslogtreecommitdiff
path: root/src/testdir/test_utf8.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-06 21:34:30 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-06 21:34:30 +0200
commit196b4664432f932625cfb6371dc42c24efe6c203 (patch)
tree95294d46aa15e3fccbee2422f352b46958d9f593 /src/testdir/test_utf8.vim
parent16b58ae9f36e9675c34d942f5d5f8c8a7914dbc4 (diff)
downloadvim-git-196b4664432f932625cfb6371dc42c24efe6c203.tar.gz
patch 8.1.1993: more functions can be used as methodsv8.1.1993
Problem: More functions can be used as methods. Solution: Make various functions usable as a method.
Diffstat (limited to 'src/testdir/test_utf8.vim')
-rw-r--r--src/testdir/test_utf8.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_utf8.vim b/src/testdir/test_utf8.vim
index 9470855af..fa0568e59 100644
--- a/src/testdir/test_utf8.vim
+++ b/src/testdir/test_utf8.vim
@@ -112,7 +112,7 @@ func Test_screenchar_utf8()
call setline(1, ["ABC\u0308"])
redraw
call assert_equal([0x0041], screenchars(1, 1))
- call assert_equal([0x0042], screenchars(1, 2))
+ call assert_equal([0x0042], 1->screenchars(2))
call assert_equal([0x0043, 0x0308], screenchars(1, 3))
call assert_equal("A", screenstring(1, 1))
call assert_equal("B", screenstring(1, 2))