diff options
author | James McCoy <jamessan@jamessan.com> | 2021-05-11 20:32:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-11 20:32:05 -0400 |
commit | 61aefaf2993c0b55f6123ba4b0bd41b1caf1fcd3 (patch) | |
tree | 91315ea95b65d83bb313d43d3141f9adf60663a0 /test/functional/legacy/011_autocommands_spec.lua | |
parent | 7d82ea01025b6981e0233ca9a5e7ee62c8b5bcad (diff) | |
parent | 4ba3d059bfcd5b08b0831e7d71de26284db6dcb9 (diff) | |
download | rneovim-61aefaf2993c0b55f6123ba4b0bd41b1caf1fcd3.tar.gz rneovim-61aefaf2993c0b55f6123ba4b0bd41b1caf1fcd3.tar.bz2 rneovim-61aefaf2993c0b55f6123ba4b0bd41b1caf1fcd3.zip |
Merge pull request #14534 from mhinz/fix-win-ci
ci: fix stalling Windows builds
Diffstat (limited to 'test/functional/legacy/011_autocommands_spec.lua')
-rw-r--r-- | test/functional/legacy/011_autocommands_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/legacy/011_autocommands_spec.lua b/test/functional/legacy/011_autocommands_spec.lua index c9c004eec1..7cc31dc787 100644 --- a/test/functional/legacy/011_autocommands_spec.lua +++ b/test/functional/legacy/011_autocommands_spec.lua @@ -70,7 +70,7 @@ describe('file reading, writing and bufnew and filter autocommands', function() feed_command('let $GZIP = ""') --execute('au FileChangedShell * echo "caught FileChangedShell"') feed_command('set bin') - feed_command("au FileReadPost *.gz '[,']!GZIP= gzip -d") + feed_command("au FileReadPost *.gz '[,']!gzip -d") -- Read and decompress the testfile. feed_command('$r Xtestfile.gz') expect('\n'..text1) |