diff options
Diffstat (limited to 'test/functional/viml/lang_spec.lua')
-rw-r--r-- | test/functional/viml/lang_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/viml/lang_spec.lua b/test/functional/viml/lang_spec.lua index 240fe58402..a27e18f695 100644 --- a/test/functional/viml/lang_spec.lua +++ b/test/functional/viml/lang_spec.lua @@ -2,10 +2,10 @@ local helpers = require('test.functional.helpers')(after_each) local clear, eval, eq = helpers.clear, helpers.eval, helpers.eq local execute, source = helpers.execute, helpers.source -describe('turkish', function() +describe('viml', function() before_each(clear) - it('applies locale to \'i\' in `<SID>` comparison', function() + it('parses `<SID>` with turkish locale', function() execute('lang ctype tr_TR.UTF-8') if string.find(eval('v:errmsg'), '^E197: ') then pending("Locale tr_TR.UTF-8 not supported") |