view src/testdir/test_comparators.vim @ 21489:c9a1b3b66fb7 v8.2.1295

patch 8.2.1295: tests 44 and 99 are old style Commit: https://github.com/vim/vim/commit/7d40b8a532fa2ce768f200ab118870d17875a7fe Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 26 12:52:59 2020 +0200 patch 8.2.1295: tests 44 and 99 are old style Problem: Tests 44 and 99 are old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6536)
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jul 2020 13:00:05 +0200
parents 140d51d5b5c3
children 08940efa6b4e
line wrap: on
line source

function Test_Comparators()
  try
    let oldisident=&isident
    set isident+=#
    call assert_equal(1, 1 is#1)
  finally
    let &isident=oldisident
  endtry
endfunction