aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/screen.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-01 22:32:16 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-01 23:29:10 +0200
commit3a69dbfca6642463ca8e19f814f71791f66332f3 (patch)
treef78118b0537e3965859bd6449d306c0f3ab88277 /test/functional/ui/screen.lua
parentc2826a7830ddba66261afdf45fcf4d0043506342 (diff)
downloadrneovim-3a69dbfca6642463ca8e19f814f71791f66332f3.tar.gz
rneovim-3a69dbfca6642463ca8e19f814f71791f66332f3.tar.bz2
rneovim-3a69dbfca6642463ca8e19f814f71791f66332f3.zip
api/cursor_style_set: mode descriptions
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r--test/functional/ui/screen.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua
index f67a4abd29..3f8173c8e2 100644
--- a/test/functional/ui/screen.lua
+++ b/test/functional/ui/screen.lua
@@ -313,8 +313,8 @@ function Screen:_redraw(updates)
if handler ~= nil then
handler(self, unpack(update[i]))
else
- assert(self._on_event, "Either add an Screen:_handle_XXX method "..
- " or call Screen:set_on_event_handler")
+ assert(self._on_event,
+ "Add Screen:_handle_XXX method or call Screen:set_on_event_handler")
self._on_event(method, update[i])
end
end