diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-10-28 00:42:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-10-28 00:42:21 +0100 |
commit | 077ff436a77f95c69da219af8cd8f553ff4f9ff8 (patch) | |
tree | 51317185c5b5f98046f386dfe672dcf4cab160db /src/testdir/test_normal.vim | |
parent | efae76ab1a43d5a628d8c2fa4218ace6ba597f5d (diff) | |
download | vim-git-077ff436a77f95c69da219af8cd8f553ff4f9ff8.tar.gz |
patch 8.1.2230: MS-Windows: testing external commands can be improvedv8.1.2230
Problem: MS-Windows: testing external commands can be improved.
Solution: Adjust tests, remove duplicate test. (closes #4928)
Diffstat (limited to 'src/testdir/test_normal.vim')
-rw-r--r-- | src/testdir/test_normal.vim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/testdir/test_normal.vim b/src/testdir/test_normal.vim index da9c004a8..b37f613ed 100644 --- a/src/testdir/test_normal.vim +++ b/src/testdir/test_normal.vim @@ -408,8 +408,7 @@ func Test_normal10_expand() if executable('echo') " Test expand(`...`) i.e. backticks command expansion. - " MS-Windows has a trailing space. - call assert_match('^abcde *$', expand('`echo abcde`')) + call assert_equal('abcde', expand('`echo abcde`')) endif " Test expand(`=...`) i.e. backticks expression expansion |