Skip to content

Commit 82a2e14

Browse files
committed
test: update 'define' option default
Nvim upstream changed the default value of 'define': neovim/neovim@fcfe535
1 parent 806f4a4 commit 82a2e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def test_options(vim):
107107
vim.current.buffer.options['define'] = 'test'
108108
assert vim.current.buffer.options['define'] == 'test'
109109
# Doesn't change the global value
110-
assert vim.options['define'] == r'^\s*#\s*define'
110+
assert vim.options['define'] == ''
111111

112112
with pytest.raises(KeyError) as excinfo:
113113
vim.current.buffer.options['doesnotexist']

0 commit comments

Comments
 (0)