aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-11-13 06:59:34 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-11-13 06:59:40 +0800
commitc5d4d1cc0df70d3d380066d21017e506628bec3c (patch)
tree113dd7ba9beb760843fef93ae7c0dfa4d207e272
parent2503de4c92108a0c51a11c9c6871afcb7047e9d2 (diff)
downloadrneovim-c5d4d1cc0df70d3d380066d21017e506628bec3c.tar.gz
rneovim-c5d4d1cc0df70d3d380066d21017e506628bec3c.tar.bz2
rneovim-c5d4d1cc0df70d3d380066d21017e506628bec3c.zip
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>
-rw-r--r--test/old/testdir/test_debugger.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_debugger.vim b/test/old/testdir/test_debugger.vim
index 3a21c453a1..fab6773fd1 100644
--- 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()