aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/011_autocommands_spec.lua
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2021-05-12 00:44:39 +0200
committerMarco Hinz <mh.codebro@gmail.com>2021-05-12 00:47:21 +0200
commit4ba3d059bfcd5b08b0831e7d71de26284db6dcb9 (patch)
tree91315ea95b65d83bb313d43d3141f9adf60663a0 /test/functional/legacy/011_autocommands_spec.lua
parent7d82ea01025b6981e0233ca9a5e7ee62c8b5bcad (diff)
downloadrneovim-4ba3d059bfcd5b08b0831e7d71de26284db6dcb9.tar.gz
rneovim-4ba3d059bfcd5b08b0831e7d71de26284db6dcb9.tar.bz2
rneovim-4ba3d059bfcd5b08b0831e7d71de26284db6dcb9.zip
Revert "vim-patch:8.1.1378: delete() can not handle a file name that looks like a pattern (#12784)"
This reverts commit 4be0e92db01a502863ac4bb26dd0fee16d833145. Unfortunately, that commit stalled the Windows builds on GHA and likely requires other patches to work properly.
Diffstat (limited to 'test/functional/legacy/011_autocommands_spec.lua')
-rw-r--r--test/functional/legacy/011_autocommands_spec.lua2
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)