mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
Problem: Some tests are old style. Solution: Change a few tests from old style to new style. (pschuh, closes #1813)
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
|