diff options
author | ZyX <kp-pav@yandex.ru> | 2017-04-09 02:36:49 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-04-09 03:24:21 +0300 |
commit | 444cab37316120d69aaa213858ed199dd35c4b59 (patch) | |
tree | 1d1549218dfa4e3a0219163a330d3f494c5338e9 | |
parent | bd84bf8c818f7673eabad0d9863b98a069cb0d75 (diff) | |
download | rneovim-444cab37316120d69aaa213858ed199dd35c4b59.tar.gz rneovim-444cab37316120d69aaa213858ed199dd35c4b59.tar.bz2 rneovim-444cab37316120d69aaa213858ed199dd35c4b59.zip |
functests: Fix legacy/wordcount_spec
Another test where bug was hidden by execute().
-rw-r--r-- | test/functional/legacy/wordcount_spec.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/legacy/wordcount_spec.lua b/test/functional/legacy/wordcount_spec.lua index 192298284f..5412903866 100644 --- a/test/functional/legacy/wordcount_spec.lua +++ b/test/functional/legacy/wordcount_spec.lua @@ -12,9 +12,7 @@ describe('wordcount', function() before_each(clear) it('is working', function() - command('set selection=inclusive') - command('fileformat=unix') - command('fileformats=unix') + command('set selection=inclusive fileformat=unix fileformats=unix') insert([=[ RESULT test:]=]) |