mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.4020: debugger test fails
Problem: Debugger test fails.
Solution: Fix import statement.
84c62d59a3
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
parent
2503de4c92
commit
c5d4d1cc0d
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user