patch 8.2.4020: debugger test fails
Problem: Debugger test fails.
Solution: Fix import statement.
diff --git a/src/testdir/test_debugger.vim b/src/testdir/test_debugger.vim
index 659c7a8..0c4bc87 100644
--- a/src/testdir/test_debugger.vim
+++ b/src/testdir/test_debugger.vim
@@ -891,7 +891,7 @@
CheckCWD
let file1 =<< trim END
vim9script
- import File2Function from './Xtest2.vim'
+ import './Xtest2.vim' as imp
def SourceAnotherFile()
source Xtest2.vim
@@ -899,7 +899,7 @@
def CallAFunction()
SourceAnotherFile()
- File2Function()
+ imp.File2Function()
enddef
def g:GlobalFunction()
diff --git a/src/version.c b/src/version.c
index ddc986b..d3732cb 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4020,
+/**/
4019,
/**/
4018,