diff options
author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2023-04-11 11:18:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 17:18:54 +0800 |
commit | aab95ec67e4d80e63cc5c5acc42f3832e76e0781 (patch) | |
tree | 2a6a3f9b9bcb6aefd1922f8d4852db149618714a /test/functional/vimscript/system_spec.lua | |
parent | dcaf2073369c672655722472aa4e7bcba7757f4c (diff) | |
download | rneovim-aab95ec67e4d80e63cc5c5acc42f3832e76e0781.tar.gz rneovim-aab95ec67e4d80e63cc5c5acc42f3832e76e0781.tar.bz2 rneovim-aab95ec67e4d80e63cc5c5acc42f3832e76e0781.zip |
test: avoid name collisions with Xtest directory (#23019)
Diffstat (limited to 'test/functional/vimscript/system_spec.lua')
-rw-r--r-- | test/functional/vimscript/system_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/vimscript/system_spec.lua b/test/functional/vimscript/system_spec.lua index 158dfe86d7..130d5d81fa 100644 --- a/test/functional/vimscript/system_spec.lua +++ b/test/functional/vimscript/system_spec.lua @@ -393,7 +393,7 @@ describe('system()', function() end) describe('with output containing NULs', function() - local fname = 'Xtest' + local fname = 'Xtest_functional_vimscript_system_nuls' before_each(create_file_with_nuls(fname)) after_each(delete_file(fname)) @@ -549,7 +549,7 @@ describe('systemlist()', function() end) describe('with output containing NULs', function() - local fname = 'Xtest' + local fname = 'Xtest_functional_vimscript_systemlist_nuls' before_each(function() command('set ff=unix') |