diff options
| author | Gregory Anders <greg@gpanders.com> | 2021-08-17 21:30:58 -0600 |
|---|---|---|
| committer | Gregory Anders <greg@gpanders.com> | 2021-08-18 12:17:12 -0600 |
| commit | d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e (patch) | |
| tree | 051f9f743f3786de6997f7f1f8e88e1ee6d8bcc5 /src/nvim/testdir/test_join.vim | |
| parent | d417e67e595a9eb19797866e91bb80b4fe299a94 (diff) | |
| download | rneovim-d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e.tar.gz rneovim-d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e.tar.bz2 rneovim-d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e.zip | |
test: update tests to work with 'hidden'
Diffstat (limited to 'src/nvim/testdir/test_join.vim')
| -rw-r--r-- | src/nvim/testdir/test_join.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_join.vim b/src/nvim/testdir/test_join.vim index cdb0562756..ecb969d10a 100644 --- a/src/nvim/testdir/test_join.vim +++ b/src/nvim/testdir/test_join.vim @@ -35,7 +35,6 @@ endfunc " Tests for setting the '[,'] marks when joining lines. func Test_join_marks() - set joinspaces enew call append(0, [ \ "\t\tO sodales, ludite, vos qui", @@ -52,9 +51,8 @@ func Test_join_marks() /^This line/;'}-join call assert_equal([0, 4, 11, 0], getpos("'[")) - call assert_equal([0, 4, 67, 0], getpos("']")) + call assert_equal([0, 4, 66, 0], getpos("']")) enew! - set nojoinspaces endfunc " Test for joining lines and marks in them |