mirror of
https://github.com/neovim/neovim.git
synced 2026-02-20 09:19:43 +10:00
Problem: Some tests are old style.
Solution: Change a few tests from old style to new style. (pschuh,
closes vim/vim#1813)
292eff0c5a
10 lines
173 B
VimL
10 lines
173 B
VimL
function Test_Comparators()
|
|
try
|
|
let oldisident=&isident
|
|
set isident+=#
|
|
call assert_equal(1, 1 is#1)
|
|
finally
|
|
let &isident=oldisident
|
|
endtry
|
|
endfunction
|