summaryrefslogtreecommitdiff
path: root/src/testdir/test_ruby.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-16 22:36:11 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-16 22:36:11 +0200
commit4a4981b7cd57b0b2289ed4f9d621ef4d90d767f0 (patch)
tree91650f43648f82186b4af26ffa812ddceb0e9d70 /src/testdir/test_ruby.vim
parent2e693a88b24dc6b12883fad78ff2cb9cd4469c98 (diff)
downloadvim-git-4a4981b7cd57b0b2289ed4f9d621ef4d90d767f0.tar.gz
patch 8.1.2166: rubyeval() not tested as a methodv8.1.2166
Problem: Rubyeval() not tested as a method. Solution: Change a test case.
Diffstat (limited to 'src/testdir/test_ruby.vim')
-rw-r--r--src/testdir/test_ruby.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_ruby.vim b/src/testdir/test_ruby.vim
index f679bbd5f..8f83a3040 100644
--- a/src/testdir/test_ruby.vim
+++ b/src/testdir/test_ruby.vim
@@ -46,7 +46,7 @@ func Test_set_cursor()
" Check that movement after setting cursor position keeps current column.
normal j
call assert_equal([2, 6], [line('.'), col('.')])
- call assert_equal([2, 5], rubyeval('$curwin.cursor'))
+ call assert_equal([2, 5], '$curwin.cursor'->rubyeval())
call assert_fails('ruby $curwin.cursor = [1]',
\ 'ArgumentError: array length must be 2')