mirror of
https://github.com/vim/vim.git
synced 2025-10-03 05:14:07 -04:00
patch 8.2.3558: Vim9: asserting the wrong variable
Problem: Vim9: asserting the wrong variable. Solution: Don't use Foo, use Goo.
This commit is contained in:
@@ -1495,7 +1495,7 @@ def Test_import_funcref()
|
||||
|
||||
def DoTest()
|
||||
const Goo = G()
|
||||
assert_equal(42, Foo)
|
||||
assert_equal(42, Goo)
|
||||
enddef
|
||||
DoTest()
|
||||
END
|
||||
|
Reference in New Issue
Block a user