1
0
forked from aniani/vim

patch 8.2.4265: autoload tests fails

Problem:    Autoload tests fails.
Solution:   Use export instead of name with #.
This commit is contained in:
Bram Moolenaar
2022-01-30 18:56:35 +00:00
parent d8fe6d34bb
commit 6a05807092
4 changed files with 8 additions and 6 deletions

View File

@@ -22,8 +22,8 @@ func Test_source_autoload()
endfunc
func Test_autoload_vim9script()
call assert_equal('some', auto9#getsome())
call assert_equal(49, auto9#add42(7))
call assert_equal('some', auto9#Getsome())
call assert_equal(49, auto9#Add42(7))
endfunc