comparison src/testdir/test_autocmd.vim @ 17918:9606c0adc148 v8.1.1955

patch 8.1.1955: tests contain typos Commit: https://github.com/vim/vim/commit/1bc353b6f1b063e189e0cef26f8dc586dcf9161f Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 1 14:45:28 2019 +0200 patch 8.1.1955: tests contain typos Problem: Tests contain typos. Solution: Correct the typos. (Dominique Pelle)
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Sep 2019 15:00:04 +0200
parents 131f1d8c5860
children 95719bfeced2
comparison
equal deleted inserted replaced
17917:5ccb73c85dd1 17918:9606c0adc148
1089 set cursorcolumn 1089 set cursorcolumn
1090 call assert_equal([], g:options) 1090 call assert_equal([], g:options)
1091 call assert_equal(g:opt[0], g:opt[1]) 1091 call assert_equal(g:opt[0], g:opt[1])
1092 1092
1093 1093
1094 " 33: Test autocomands when an option value is converted internally. 1094 " 33: Test autocommands when an option value is converted internally.
1095 noa set backspace=1 " Reset global and local value (without triggering autocmd) 1095 noa set backspace=1 " Reset global and local value (without triggering autocmd)
1096 let g:options=[['backspace', 'indent,eol', 'indent,eol', 'indent,eol', '2', 'global', 'set']] 1096 let g:options=[['backspace', 'indent,eol', 'indent,eol', 'indent,eol', '2', 'global', 'set']]
1097 set backspace=2 1097 set backspace=2
1098 call assert_equal([], g:options) 1098 call assert_equal([], g:options)
1099 call assert_equal(g:opt[0], g:opt[1]) 1099 call assert_equal(g:opt[0], g:opt[1])