diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-08 10:55:09 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-06-08 10:56:06 +0200 |
commit | 7d542b59002f9bef608fd89a2b70fc7baa7916dc (patch) | |
tree | 527f5057525d045bb3e00a59d27204f8c477d8ad /src | |
parent | b6eeb40d190d6057bd48ed6b37f5bc472e2eb14b (diff) | |
download | rneovim-7d542b59002f9bef608fd89a2b70fc7baa7916dc.tar.gz rneovim-7d542b59002f9bef608fd89a2b70fc7baa7916dc.tar.bz2 rneovim-7d542b59002f9bef608fd89a2b70fc7baa7916dc.zip |
Test_writefile_sync_dev_stdout: use s for sync explicitly
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_writefile.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_writefile.vim b/src/nvim/testdir/test_writefile.vim index 54997c7692..9c9e051bc9 100644 --- a/src/nvim/testdir/test_writefile.vim +++ b/src/nvim/testdir/test_writefile.vim @@ -162,7 +162,7 @@ func Test_writefile_sync_dev_stdout() endif if filewritable('/dev/stdout') " Just check that this doesn't cause an error. - call writefile(['one'], '/dev/stdout') + call writefile(['one'], '/dev/stdout', 's') else throw 'Skipped: /dev/stdout is not writable' endif |