# HG changeset patch # User Bram Moolenaar # Date 1671273905 -3600 # Node ID 4abd8f9edf470f38fdf98f2e53a46dee94e61f87 # Parent f4f6823fff3309c21de91e17cc7a06ff7675f85b patch 9.0.1066: test function name is wrong Commit: https://github.com/vim/vim/commit/67f3094397a40bea051a8e99921a8bf6f45d6147 Author: zeertzjq Date: Sat Dec 17 10:40:15 2022 +0000 patch 9.0.1066: test function name is wrong Problem: Test function name is wrong. Solution: Rename to what is actually being tested. (closes https://github.com/vim/vim/issues/11712) diff --git a/src/testdir/test_menu.vim b/src/testdir/test_menu.vim --- a/src/testdir/test_menu.vim +++ b/src/testdir/test_menu.vim @@ -570,7 +570,7 @@ func Test_only_modifier() tunmenu a.b endfunc -func Test_mapclear_while_listing() +func Test_unmenu_while_listing_menus() CheckRunVimInTerminal let lines =<< trim END diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1066, +/**/ 1065, /**/ 1064,