aboutsummaryrefslogtreecommitdiff
path: root/test/busted/outputHandlers/nvim.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2021-09-14 10:20:33 -0700
committerGitHub <noreply@github.com>2021-09-14 10:20:33 -0700
commitb63b4777ec80069e42326778023db30bd8217f1a (patch)
treeeb7ca2f4f193d8069096b7d653665addecefa51d /test/busted/outputHandlers/nvim.lua
parent0a83017fe95df0290adb98ec6bf457b96a3fab17 (diff)
downloadrneovim-b63b4777ec80069e42326778023db30bd8217f1a.tar.gz
rneovim-b63b4777ec80069e42326778023db30bd8217f1a.tar.bz2
rneovim-b63b4777ec80069e42326778023db30bd8217f1a.zip
docs: third-party licenses, TEST_COLORS, system() #15665
Diffstat (limited to 'test/busted/outputHandlers/nvim.lua')
-rw-r--r--test/busted/outputHandlers/nvim.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/busted/outputHandlers/nvim.lua b/test/busted/outputHandlers/nvim.lua
index 191387e1b9..31d3415e35 100644
--- a/test/busted/outputHandlers/nvim.lua
+++ b/test/busted/outputHandlers/nvim.lua
@@ -3,7 +3,7 @@ local global_helpers = require('test.helpers')
-- Colors are disabled by default. #15610
local colors = setmetatable({}, {__index = function() return function(s) return s end end})
-if os.getenv "NVIM_COLORS" then
+if os.getenv "TEST_COLORS" then
colors = require 'term.colors'
end