Skip to content

Commit

Permalink
Remove 'compatible' option from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tarruda committed Jan 6, 2015
1 parent 2fcfb9a commit 5a8713a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_vim.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ def test_vars():

@with_setup(setup=cleanup)
def test_options():
eq(vim.options['compatible'], True)
vim.options['compatible'] = False
eq(vim.options['compatible'], False)
eq(vim.options['listchars'], 'eol:$')
vim.options['listchars'] = 'tab:xy'
eq(vim.options['listchars'], 'tab:xy')


@with_setup(setup=cleanup)
Expand Down

0 comments on commit 5a8713a

Please sign in to comment.