aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/screen.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-05-18 21:50:57 +0200
committerGitHub <noreply@github.com>2019-05-18 21:50:57 +0200
commit1cbe0145695bea4168b4e23f61e29e51684088e1 (patch)
tree67e894a87ed21808c41eb84b6406c370311c4943 /test/functional/ui/screen.lua
parentaa610690bf9e525fcd172def37e14505ac449cf2 (diff)
parent9d7aaf7149a5543b1ddfc89fb506a1019bec3ffb (diff)
downloadrneovim-1cbe0145695bea4168b4e23f61e29e51684088e1.tar.gz
rneovim-1cbe0145695bea4168b4e23f61e29e51684088e1.tar.bz2
rneovim-1cbe0145695bea4168b4e23f61e29e51684088e1.zip
Merge #9301 'runtime/lua'
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r--test/functional/ui/screen.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua
index 53b6642207..a81851cbba 100644
--- a/test/functional/ui/screen.lua
+++ b/test/functional/ui/screen.lua
@@ -71,11 +71,10 @@
-- To help write screen tests, see Screen:snapshot_util().
-- To debug screen tests, see Screen:redraw_debug().
-local global_helpers = require('test.helpers')
-local deepcopy = global_helpers.deepcopy
-local shallowcopy = global_helpers.shallowcopy
-local concat_tables = global_helpers.concat_tables
local helpers = require('test.functional.helpers')(nil)
+local deepcopy = helpers.deepcopy
+local shallowcopy = helpers.shallowcopy
+local concat_tables = helpers.concat_tables
local request, run_session = helpers.request, helpers.run_session
local eq = helpers.eq
local dedent = helpers.dedent