comparison src/testdir/test_filetype.vim @ 17555:c2eb5118ba89 v8.1.1775

patch 8.1.1775: error message may be empty in filetype test commit https://github.com/vim/vim/commit/eee9f65b2a213e9031f172d9d3b22adad6cb985d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jul 29 21:14:42 2019 +0200 patch 8.1.1775: error message may be empty in filetype test Problem: Error message may be empty in filetype test. Solution: Use v:exception instead. (Daniel Hahler, closs https://github.com/vim/vim/issues/4744)
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Jul 2019 21:15:08 +0200
parents 62a6d99082f7
children 180fb9981255
comparison
equal deleted inserted replaced
17554:fe013eacc399 17555:c2eb5118ba89
519 for i in range(0, len(names) - 1) 519 for i in range(0, len(names) - 1)
520 new 520 new
521 try 521 try
522 exe 'edit ' . fnameescape(names[i]) 522 exe 'edit ' . fnameescape(names[i])
523 catch 523 catch
524 call assert_report('cannot edit "' . names[i] . '": ' . v:errmsg) 524 call assert_report('cannot edit "' . names[i] . '": ' . v:exception)
525 endtry 525 endtry
526 if &filetype == '' && &readonly 526 if &filetype == '' && &readonly
527 " File exists but not able to edit it (permission denied) 527 " File exists but not able to edit it (permission denied)
528 else 528 else
529 call assert_equal(ft, &filetype, 'with file name: ' . names[i]) 529 call assert_equal(ft, &filetype, 'with file name: ' . names[i])