commit | 7624af02948de881eb5294fe5d266b948404d489 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 24 04:51:20 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 24 04:51:20 2018 +0200 |
tree | aaac98af39d0942e25c5e4652ad0ba1e4ba2f206 | |
parent | 68f1b1b37fa7aba985d9f8727fd9f0f3eb0c19a9 [diff] |
patch 8.1.0208: file left behind after running individual test Problem: File left behind after running individual test. Solution: Delete the file.
diff --git a/src/testdir/test_modeline.vim b/src/testdir/test_modeline.vim index e278c16..f02c68c 100644 --- a/src/testdir/test_modeline.vim +++ b/src/testdir/test_modeline.vim
@@ -5,4 +5,5 @@ call writefile(['vi:0', 'nothing'], 'Xmodeline') call assert_fails('split Xmodeline', 'E518:') bwipe! + call delete('Xmodeline') endfunc