diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-13 06:00:59 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-10-13 14:20:03 +0200 |
commit | 5060ebc5d0dc84f0242e2cb4983ca3e8307c3173 (patch) | |
tree | bdb632078e443613857df2dab55f26c7de8b4c71 | |
parent | 5a61ff188c60a9ce6cd6bfc7bfdf5ccbd7616523 (diff) | |
download | rneovim-5060ebc5d0dc84f0242e2cb4983ca3e8307c3173.tar.gz rneovim-5060ebc5d0dc84f0242e2cb4983ca3e8307c3173.tar.bz2 rneovim-5060ebc5d0dc84f0242e2cb4983ca3e8307c3173.zip |
test/tui_spec: Force LANG=C
References #5455
-rw-r--r-- | test/functional/terminal/tui_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/tui_spec.lua b/test/functional/terminal/tui_spec.lua index 27f00e8550..60f989d701 100644 --- a/test/functional/terminal/tui_spec.lua +++ b/test/functional/terminal/tui_spec.lua @@ -313,7 +313,7 @@ describe("tui 't_Co' (terminal colors)", function() -- This is ugly because :term/termopen() forces TERM=xterm-256color. -- TODO: Revisit this after jobstart/termopen accept `env` dict. screen = thelpers.screen_setup(0, string.format( - [=[['sh', '-c', 'TERM=%s %s %s -u NONE -i NONE --cmd "silent set noswapfile"']]=], + [=[['sh', '-c', 'LANG=C TERM=%s %s %s -u NONE -i NONE --cmd "silent set noswapfile"']]=], term, (colorterm ~= nil and "COLORTERM="..colorterm or ""), helpers.nvim_prog)) |