diff options
-rw-r--r-- | src/nvim/testdir/test_environ.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_environ.vim b/src/nvim/testdir/test_environ.vim index 76ffe5631b..21bb09a690 100644 --- a/src/nvim/testdir/test_environ.vim +++ b/src/nvim/testdir/test_environ.vim @@ -36,7 +36,7 @@ func Test_external_env() call setenv('FOO', v:null) if has('win32') - let result = system('set | findstr ^FOO=') + let result = system('set | findstr "^FOO="') else let result = system('env | grep ^FOO=') endif |