diff options
author | zeertzjq <zeertzjq@outlook.com> | 2025-03-05 06:42:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-05 06:42:54 +0800 |
commit | 97dc02687af76981fa202cb575445d670b66f1f1 (patch) | |
tree | 14a102a747e4372655701d9ebb142d357e25e4bd | |
parent | 81ea44fa6aca27e6871d5baa158e2a5bcfa41981 (diff) | |
download | rneovim-97dc02687af76981fa202cb575445d670b66f1f1.tar.gz rneovim-97dc02687af76981fa202cb575445d670b66f1f1.tar.bz2 rneovim-97dc02687af76981fa202cb575445d670b66f1f1.zip |
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
https://github.com/vim/vim/commit/a95085e0fc2e46c7136982e8ba1ae91375991bfd
-rw-r--r-- | test/old/testdir/test_registers.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_registers.vim b/test/old/testdir/test_registers.vim index 40cc5fe8fd..02da2ac689 100644 --- a/test/old/testdir/test_registers.vim +++ b/test/old/testdir/test_registers.vim @@ -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' |