From 1c4989c2a32b07ef5a87449be87ceab8b0f6a2e7 Mon Sep 17 00:00:00 2001 From: Jurica Bradaric Date: Tue, 10 May 2016 20:58:49 +0200 Subject: vim-patch:7.4.1049 Problem: Wordcount test still still fails on MS-Windows. Solution: Set 'fileformats' to "unix". https://github.com/vim/vim/commit/485dace817a99f4cf92a598845d27c8ee685df93 --- test/functional/legacy/wordcount_spec.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/functional/legacy/wordcount_spec.lua b/test/functional/legacy/wordcount_spec.lua index 64f1fe7851..ba7be8f21b 100644 --- a/test/functional/legacy/wordcount_spec.lua +++ b/test/functional/legacy/wordcount_spec.lua @@ -11,6 +11,8 @@ describe('wordcount', function() it('is working', function() execute('set selection=inclusive') execute('fileformat=unix') + execute('fileformats=unix') + insert([=[ RESULT test:]=]) -- cgit