diff src/testdir/test_vim9_func.vim @ 25489:911fdca7f736 v8.2.3281

patch 8.2.3281: Vim9: TODO items in tests can be taken care of Commit: https://github.com/vim/vim/commit/23e2e115154ef0bf05d809024eed328a46ed0f82 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 3 21:16:18 2021 +0200 patch 8.2.3281: Vim9: TODO items in tests can be taken care of Problem: Vim9: TODO items in tests can be taken care of. Solution: Update test for now working functionality. (closes https://github.com/vim/vim/issues/8694)
author Bram Moolenaar <Bram@vim.org>
date Tue, 03 Aug 2021 21:30:04 +0200
parents b8a6a0007dc3
children a84e75d73fde
line wrap: on
line diff
--- a/src/testdir/test_vim9_func.vim
+++ b/src/testdir/test_vim9_func.vim
@@ -2250,15 +2250,14 @@ def Test_double_nested_lambda()
 enddef
 
 def Test_nested_inline_lambda()
-  # TODO: use the "text" argument
   var lines =<< trim END
       vim9script
       def F(text: string): func(string): func(string): string
         return (arg: string): func(string): string => ((sep: string): string => {
-            return sep .. arg
+            return sep .. arg .. text
           })
       enddef
-      assert_equal('--there', F('unused')('there')('--'))
+      assert_equal('--there++', F('++')('there')('--'))
   END
   CheckScriptSuccess(lines)