diff options
Diffstat (limited to 'test/functional/legacy/106_errorformat_spec.lua')
-rw-r--r-- | test/functional/legacy/106_errorformat_spec.lua | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/functional/legacy/106_errorformat_spec.lua b/test/functional/legacy/106_errorformat_spec.lua index 2b17d63378..3f017a704f 100644 --- a/test/functional/legacy/106_errorformat_spec.lua +++ b/test/functional/legacy/106_errorformat_spec.lua @@ -2,22 +2,22 @@ local helpers = require('test.functional.helpers')(after_each) local clear = helpers.clear -local execute, expect = helpers.execute, helpers.expect +local command, expect = helpers.command, helpers.expect describe('errorformat', function() setup(clear) it('is working', function() - execute("set efm=%EEEE%m,%WWWW%m,%+CCCC%.%#,%-GGGG%.%#") - execute("cgetexpr ['WWWW', 'EEEE', 'CCCC']") - execute("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))") - execute("cgetexpr ['WWWW', 'GGGG', 'EEEE', 'CCCC']") - execute("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))") - execute("cgetexpr ['WWWW', 'GGGG', 'ZZZZ', 'EEEE', 'CCCC', 'YYYY']") - execute("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))") - + command("set efm=%EEEE%m,%WWWW%m,%+CCCC%.%#,%-GGGG%.%#") + command("cgetexpr ['WWWW', 'EEEE', 'CCCC']") + command("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))") + command("cgetexpr ['WWWW', 'GGGG', 'EEEE', 'CCCC']") + command("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))") + command("cgetexpr ['WWWW', 'GGGG', 'ZZZZ', 'EEEE', 'CCCC', 'YYYY']") + command("$put =strtrans(string(map(getqflist(), '[v:val.text, v:val.valid]')))") + expect([=[ - + [['W', 1], ['E^@CCCC', 1]] [['W', 1], ['E^@CCCC', 1]] [['W', 1], ['ZZZZ', 0], ['E^@CCCC', 1], ['YYYY', 0]]]=]) |