tui: Correct a copy and paste error in stterm tests.

The test decsription was correct; the test was not.
This commit is contained in:
Jonathan de Boyne Pollard 2017-05-28 01:30:08 +01:00
parent 24db94b1a6
commit 3f8dedd7ae

View File

@ -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()