mirror of
https://github.com/neovim/neovim.git
synced 2025-09-05 19:08:15 +00:00
vim-patch:9.1.1171: tests: wrong arguments passed to assert_equal() (#32727)
Problem: tests: wrong arguments passed to assert_equal()
(after v9.1.1167).
Solution: Swap arguments in the assert_equal() call (zeertzjq).
closes: vim/vim#16782
a95085e0fc
This commit is contained in:
@@ -1045,7 +1045,7 @@ func Test_mark_from_yank()
|
||||
normal! yi"
|
||||
call assert_equal([0, 1, 10, 0], getpos("']"))
|
||||
normal! ya"
|
||||
call assert_equal(getpos("']"), [0, 1, 13, 0], getpos("']"))
|
||||
call assert_equal([0, 1, 13, 0], getpos("']"))
|
||||
" single quote object
|
||||
call setline(1, 'test ''yank'' mark')
|
||||
normal! yi'
|
||||
|
Reference in New Issue
Block a user