neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit c5d4d1cc0df70d3d380066d21017e506628bec3c
parent 2503de4c92108a0c51a11c9c6871afcb7047e9d2
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Mon, 13 Nov 2023 06:59:34 +0800

vim-patch:8.2.4020: debugger test fails

Problem:    Debugger test fails.
Solution:   Fix import statement.

https://github.com/vim/vim/commit/84c62d59a3604d15c447f28e89679944a4926cc3

Co-authored-by: Bram Moolenaar <Bram@vim.org>

Diffstat:
Mtest/old/testdir/test_debugger.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/old/testdir/test_debugger.vim b/test/old/testdir/test_debugger.vim @@ -880,7 +880,7 @@ func Test_Backtrace_DefFunction() CheckCWD let file1 =<< trim END vim9script - import File2Function from './Xtest2.vim' + import './Xtest2.vim' as imp def SourceAnotherFile() source Xtest2.vim @@ -888,7 +888,7 @@ func Test_Backtrace_DefFunction() def CallAFunction() SourceAnotherFile() - File2Function() + imp.File2Function() enddef def g:GlobalFunction()