summaryrefslogtreecommitdiffstats
path: root/src/testdir/test70.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-09-01 20:16:52 +0200
committerBram Moolenaar <Bram@vim.org>2019-09-01 20:16:52 +0200
commita1449836334355b1fb00cd1bf083e7d353f6c4d7 (patch)
treef9623248fa3e1044acb35c25f155b7649f03c2b6 /src/testdir/test70.in
parentdb022f3ffb57c5ff4b97b4e93a994d11e4c10466 (diff)
patch 8.1.1961: more functions can be used as a methodv8.1.1961
Problem: More functions can be used as a method. Solution: Allow more functions to be used as a method. Add a test for mapcheck().
Diffstat (limited to 'src/testdir/test70.in')
-rw-r--r--src/testdir/test70.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test70.in b/src/testdir/test70.in
index 9fbe818b3d..9ee59c3a28 100644
--- a/src/testdir/test70.in
+++ b/src/testdir/test70.in
@@ -25,7 +25,7 @@ STARTTEST
:mz (vim-set-buff-line (vim-eval "line('.')") "1 changed line 1")
:" scalar test
:let tmp_string = mzeval('"string"')
-:let tmp_1000 = mzeval('1000')
+:let tmp_1000 = '1000'->mzeval()
:if tmp_string . tmp_1000 == "string1000"
:let scalar_res = "OK"
:else