From a2aeed013c131fc98ec135299a2c6f239b1b01eb Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Sat, 13 Feb 2021 13:49:42 -0500 Subject: vim-patch:8.2.1903: buffer test fails with normal features Problem: Buffer test fails with normal features. Solution: Use 'numberwidth' instead of 'conceallevel' in the test. https://github.com/vim/vim/commit/37e4e03c67dacfc4a065e95492ffc4c7f490b44b --- src/nvim/testdir/test_buffer.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nvim/testdir/test_buffer.vim b/src/nvim/testdir/test_buffer.vim index 99a64694da..4de11af6f1 100644 --- a/src/nvim/testdir/test_buffer.vim +++ b/src/nvim/testdir/test_buffer.vim @@ -13,11 +13,11 @@ endfunc func Test_badd_options() new SomeNewBuffer - setlocal cole=3 + setlocal numberwidth=3 wincmd p badd SomeNewBuffer new SomeNewBuffer - call assert_equal(3, &cole) + call assert_equal(3, &numberwidth) close close bwipe! SomeNewBuffer -- cgit