test: Make it possible to run functional tests with plain lua

Replace the hexadecimal escape sequences, which are only supported by luajit
This commit is contained in:
Thiago de Arruda
2015-01-21 18:45:24 -03:00
parent f08fe552f4
commit 5b65ac2ca7
2 changed files with 4 additions and 4 deletions

View File

@@ -117,7 +117,7 @@ describe('vim_* functions', function()
describe('replace_termcodes', function()
it('escapes K_SPECIAL as K_SPECIAL KS_SPECIAL KE_FILLER', function()
eq(helpers.nvim('replace_termcodes', '\x80', true, true, true), '\x80\xfeX')
eq(helpers.nvim('replace_termcodes', '\128', true, true, true), '\128\254X')
end)
it('leaves non K_SPECIAL string unchanged', function()