diff options
author | Jurica Bradaric <jbradaric@gmail.com> | 2016-05-10 20:57:44 +0200 |
---|---|---|
committer | Jurica Bradaric <jbradaric@gmail.com> | 2016-05-10 20:58:39 +0200 |
commit | 6e9e5d23ce3e295f732b28fb1e9281fcc830b118 (patch) | |
tree | e846dbc7116634495f166412804f1c0e2c1a0ca4 /test/functional/legacy/wordcount_spec.lua | |
parent | ae7500457e13ca89c31884fa506194f0f330f89a (diff) | |
download | rneovim-6e9e5d23ce3e295f732b28fb1e9281fcc830b118.tar.gz rneovim-6e9e5d23ce3e295f732b28fb1e9281fcc830b118.tar.bz2 rneovim-6e9e5d23ce3e295f732b28fb1e9281fcc830b118.zip |
vim-patch:7.4.1048
Problem: Wordcount test still fail on MS-Windows.
Solution: Set 'fileformat' to "unix".
https://github.com/vim/vim/commit/c7803a1c42228566ee2e2efcd621b21d0a8ed3ea
Diffstat (limited to 'test/functional/legacy/wordcount_spec.lua')
-rw-r--r-- | test/functional/legacy/wordcount_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/legacy/wordcount_spec.lua b/test/functional/legacy/wordcount_spec.lua index a1efbdc893..64f1fe7851 100644 --- a/test/functional/legacy/wordcount_spec.lua +++ b/test/functional/legacy/wordcount_spec.lua @@ -10,6 +10,7 @@ describe('wordcount', function() it('is working', function() execute('set selection=inclusive') + execute('fileformat=unix') insert([=[ RESULT test:]=]) |