comparison src/testdir/test_comparators.vim @ 11651:140d51d5b5c3 v8.0.0708

patch 8.0.0708: some tests are old style commit https://github.com/vim/vim/commit/292eff0c5aacb8531d65509679b6c29eae8dc22a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 11 21:46:28 2017 +0200 patch 8.0.0708: some tests are old style Problem: Some tests are old style. Solution: Change a few tests from old style to new style. (pschuh, closes #1813)
author Christian Brabandt <cb@256bit.org>
date Tue, 11 Jul 2017 22:00:03 +0200
parents
children 08940efa6b4e
comparison
equal deleted inserted replaced
11650:2a4e83ba20a5 11651:140d51d5b5c3
1 function Test_Comparators()
2 try
3 let oldisident=&isident
4 set isident+=#
5 call assert_equal(1, 1 is#1)
6 finally
7 let &isident=oldisident
8 endtry
9 endfunction