aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-08-20 20:18:10 +0200
committerGitHub <noreply@github.com>2019-08-20 20:18:10 +0200
commit275540342934c297771e68eed077f23ce402b63f (patch)
tree3773f16a06a4cc35f064ec82d028dbe2ab34c11a /test
parente097e4704b8b4fd8c8ec659a6e9cc83cb500cfc3 (diff)
parent222717c95cb6cd840c74ca9b1f7ac66264df187f (diff)
downloadrneovim-275540342934c297771e68eed077f23ce402b63f.tar.gz
rneovim-275540342934c297771e68eed077f23ce402b63f.tar.bz2
rneovim-275540342934c297771e68eed077f23ce402b63f.zip
Merge pull request #10818 from blueyed/minor
Minor: .gitignore, improve test assertion message
Diffstat (limited to 'test')
-rw-r--r--test/functional/ui/screen.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua
index df0fce4199..3b39794465 100644
--- a/test/functional/ui/screen.lua
+++ b/test/functional/ui/screen.lua
@@ -500,7 +500,8 @@ function Screen:_wait(check, flags)
local did_miminal_timeout = false
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)
if not did_flush then
return