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:
zeertzjq
2025-03-05 06:42:54 +08:00
committed by GitHub
parent 81ea44fa6a
commit 97dc02687a

View File

@@ -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'