mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #10818 from blueyed/minor
Minor: .gitignore, improve test assertion message
This commit is contained in:
commit
2755403429
2
.gitignore
vendored
2
.gitignore
vendored
@ -42,6 +42,8 @@ tags
|
|||||||
/src/nvim/testdir/valgrind.*
|
/src/nvim/testdir/valgrind.*
|
||||||
/src/nvim/testdir/.gdbinit
|
/src/nvim/testdir/.gdbinit
|
||||||
/runtime/indent/testdir/*.out
|
/runtime/indent/testdir/*.out
|
||||||
|
# Generated by src/nvim/testdir/runnvim.sh.
|
||||||
|
/src/nvim/testdir/*.tlog
|
||||||
|
|
||||||
# Generated by unit tests.
|
# Generated by unit tests.
|
||||||
/test/includes/post/
|
/test/includes/post/
|
||||||
|
@ -500,7 +500,8 @@ function Screen:_wait(check, flags)
|
|||||||
local did_miminal_timeout = false
|
local did_miminal_timeout = false
|
||||||
|
|
||||||
local function notification_cb(method, args)
|
local function notification_cb(method, args)
|
||||||
assert(method == 'redraw')
|
assert(method == 'redraw', string.format(
|
||||||
|
'notification_cb: unexpected method (%s, args=%s)', method, inspect(args)))
|
||||||
did_flush = self:_redraw(args)
|
did_flush = self:_redraw(args)
|
||||||
if not did_flush then
|
if not did_flush then
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user