aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2021-06-13 11:51:12 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2021-11-19 13:45:41 +0900
commit2c431943d663ee9bbd0434a2b34180bcf6a058e9 (patch)
tree49907a5e80a470736b8d7ebdae6bef8a0717a654
parente9819ca709c43de7622dbf98c564ab2a9fe4a50c (diff)
downloadrneovim-2c431943d663ee9bbd0434a2b34180bcf6a058e9.tar.gz
rneovim-2c431943d663ee9bbd0434a2b34180bcf6a058e9.tar.bz2
rneovim-2c431943d663ee9bbd0434a2b34180bcf6a058e9.zip
fix: remove unneeded gzip check
-rw-r--r--test/functional/legacy/011_autocommands_spec.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/functional/legacy/011_autocommands_spec.lua b/test/functional/legacy/011_autocommands_spec.lua
index 79a1e61b12..0fa9290f3c 100644
--- a/test/functional/legacy/011_autocommands_spec.lua
+++ b/test/functional/legacy/011_autocommands_spec.lua
@@ -72,11 +72,6 @@ describe('file reading, writing and bufnew and filter autocommands', function()
prepare_gz_file('Xtestfile', text1)
--execute('au FileChangedShell * echo "caught FileChangedShell"')
feed_command('set bin')
- feed_command("call setenv('GZIP', v:null)")
- if not iswin() then
- -- Ignore non standard shell configuration
- feed_command('set shell=sh')
- end
feed_command("au FileReadPost *.gz '[,']!gzip -d")
-- Read and decompress the testfile.
feed_command('$r Xtestfile.gz')