summaryrefslogtreecommitdiff
path: root/src/testdir
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-29 20:01:52 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-29 20:01:52 +0100
commit1577537f109d97a975fda9a899cacfb598617767 (patch)
tree2aae6eb208722a06a991f51a064ca9d135be175d /src/testdir
parent6ebe4f970b8b398087076a72a7aae6e680fb92da (diff)
downloadvim-git-1577537f109d97a975fda9a899cacfb598617767.tar.gz
patch 9.0.0819v9.0.0819
Diffstat (limited to 'src/testdir')
-rw-r--r--src/testdir/test_fixeol.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testdir/test_fixeol.vim b/src/testdir/test_fixeol.vim
index 3ede84f49..9d6c900bd 100644
--- a/src/testdir/test_fixeol.vim
+++ b/src/testdir/test_fixeol.vim
@@ -34,10 +34,10 @@ func Test_fixeol()
w >>XXTestEol
w >>XXTestNoEol
- call assert_equal(['with eol', 'END'], readfile('XXEol'))
- call assert_equal(['without eolEND'], readfile('XXNoEol'))
- call assert_equal(['with eol', 'stays eol', 'END'], readfile('XXTestEol'))
- call assert_equal(['without eol', 'stays withoutEND'],
+ call assert_equal(['with eol or eof', 'END'], readfile('XXEol'))
+ call assert_equal(['without eol or eofEND'], readfile('XXNoEol'))
+ call assert_equal(['with eol or eof', 'stays eol', 'END'], readfile('XXTestEol'))
+ call assert_equal(['without eol or eof', 'stays withoutEND'],
\ readfile('XXTestNoEol'))
call delete('XXEol')