forked from aniani/vim
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
|