From d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Tue, 17 Aug 2021 21:30:58 -0600 Subject: test: update tests to work with 'hidden' --- src/nvim/testdir/test_join.vim | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/nvim/testdir/test_join.vim') 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 -- cgit