diff options
author | Jonathan de Boyne Pollard <J.deBoynePollard-newsgroups@NTLWorld.com> | 2017-05-28 01:30:08 +0100 |
---|---|---|
committer | Jonathan de Boyne Pollard <J.deBoynePollard-newsgroups@NTLWorld.com> | 2017-06-03 18:53:28 +0100 |
commit | 3f8dedd7aefaa64cea83add75715701b50625812 (patch) | |
tree | 2de2f27654c227307f90a5a75488a1f16fadafa6 | |
parent | 24db94b1a6d821699222564856f8e1d89841dfa6 (diff) | |
download | rneovim-3f8dedd7aefaa64cea83add75715701b50625812.tar.gz rneovim-3f8dedd7aefaa64cea83add75715701b50625812.tar.bz2 rneovim-3f8dedd7aefaa64cea83add75715701b50625812.zip |
tui: Correct a copy and paste error in stterm tests.
The test decsription was correct; the test was not.
-rw-r--r-- | test/functional/terminal/tui_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/terminal/tui_spec.lua b/test/functional/terminal/tui_spec.lua index ff4314c36c..ac30be1e58 100644 --- a/test/functional/terminal/tui_spec.lua +++ b/test/functional/terminal/tui_spec.lua @@ -479,14 +479,14 @@ describe("tui 't_Co' (terminal colors)", function() it("TERM=st COLORTERM=st uses 16/256 colors", function() if is_freebsd then - assert_term_colors("st", nil, 256) + assert_term_colors("st", "st", 256) else - assert_term_colors("st", nil, 16) + assert_term_colors("st", "st", 16) end end) it("TERM=st COLORTERM=st-256color uses 256 colors", function() - assert_term_colors("st", nil, 256) + assert_term_colors("st", "st-256color", 256) end) it("TERM=st-256color uses 256 colors", function() |