Skip to content

Commit 5a8713a

Browse files
committed
Remove 'compatible' option from tests
1 parent 2fcfb9a commit 5a8713a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_vim.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ def test_vars():
7878

7979
@with_setup(setup=cleanup)
8080
def test_options():
81-
eq(vim.options['compatible'], True)
82-
vim.options['compatible'] = False
83-
eq(vim.options['compatible'], False)
81+
eq(vim.options['listchars'], 'eol:$')
82+
vim.options['listchars'] = 'tab:xy'
83+
eq(vim.options['listchars'], 'tab:xy')
8484

8585

8686
@with_setup(setup=cleanup)

0 commit comments

Comments
 (0)