diff src/testdir/test_vim9_func.vim @ 22139:c7fb7361df33 v8.2.1619

patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest() Commit: https://github.com/vim/vim/commit/7c27f337bf278babc1ccdcb66ac975f115d660b7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 5 22:45:55 2020 +0200 patch 8.2.1619: Vim9: cannot pass "true" to spellsuggest() Problem: Vim9: cannot pass "true" to spellsuggest(). Solution: Use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6883)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Sep 2020 23:00:03 +0200
parents faaf88167b58
children d55008685870
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -1628,6 +1628,14 @@ def Test_setreg()
   assert_equal(reginfo, getreginfo('a'))
 enddef 
 
+def Test_spellsuggest()
+  if !has('spell')
+    MissingFeature 'spell'
+  else
+    spellsuggest('marrch', 1, true)->assert_equal(['March'])
+  endif
+enddef
+
 def Test_synID()
   new
   setline(1, "text")