mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-02-26 18:23:39 +01: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
|