summaryrefslogtreecommitdiffstats
path: root/src/testdir/gen_opt_test.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-11-05 21:21:33 +0100
committerBram Moolenaar <Bram@vim.org>2018-11-05 21:21:33 +0100
commitd0721058f494143186f66a60151c9634031a8c96 (patch)
tree3c47ba880d622c5571b370bbbe7923f44c91b485 /src/testdir/gen_opt_test.vim
parent389ab7122bec99c11ad4ce6d87cc6f38a21e4e40 (diff)
patch 8.1.0513: no error for set diffopt+=algorithm:v8.1.0513
Problem: No error for set diffopt+=algorithm:. Solution: Check for missing argument. (Hirohito Higashi, closes #3598)
Diffstat (limited to 'src/testdir/gen_opt_test.vim')
-rw-r--r--src/testdir/gen_opt_test.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim
index a742153cda..c0e89cfb0f 100644
--- a/src/testdir/gen_opt_test.vim
+++ b/src/testdir/gen_opt_test.vim
@@ -81,7 +81,7 @@ let test_values = {
\ 'cryptmethod': [['', 'zip'], ['xxx']],
\ 'cscopequickfix': [['', 's-', 's-,c+,e0'], ['xxx', 's,g,d']],
\ 'debug': [['', 'msg', 'msg', 'beep'], ['xxx']],
- \ 'diffopt': [['', 'filler', 'icase,iwhite'], ['xxx']],
+ \ 'diffopt': [['', 'filler', 'icase,iwhite'], ['xxx', 'algorithm:xxx', 'algorithm:']],
\ 'display': [['', 'lastline', 'lastline,uhex'], ['xxx']],
\ 'eadirection': [['', 'both', 'ver'], ['xxx', 'ver,hor']],
\ 'encoding': [['latin1'], ['xxx', '']],