aboutsummaryrefslogtreecommitdiff
path: root/test/functional/options/defaults_spec.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-01-16 12:14:59 -0800
committerGitHub <noreply@github.com>2021-01-16 21:14:59 +0100
commitabbfaf286f26989b18377d4238f3cea9dc281149 (patch)
treeacd6d74360e8751b3e5d9333a91326956501a892 /test/functional/options/defaults_spec.lua
parent0fad952a2b7d90d2c3215e8e3c50ae62233e2158 (diff)
downloadrneovim-abbfaf286f26989b18377d4238f3cea9dc281149.tar.gz
rneovim-abbfaf286f26989b18377d4238f3cea9dc281149.tar.bz2
rneovim-abbfaf286f26989b18377d4238f3cea9dc281149.zip
logs: make kXDGCacheHome if it doesn't exist (#13758)
Diffstat (limited to 'test/functional/options/defaults_spec.lua')
-rw-r--r--test/functional/options/defaults_spec.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/test/functional/options/defaults_spec.lua b/test/functional/options/defaults_spec.lua
index 12a31b592d..eb5e284385 100644
--- a/test/functional/options/defaults_spec.lua
+++ b/test/functional/options/defaults_spec.lua
@@ -233,13 +233,6 @@ describe('startup defaults', function()
}})
eq(xdgcachedir..'/log', string.gsub(eval('$NVIM_LOG_FILE'), '\\', '/'))
end)
- it('defaults to .nvimlog if stdpath("cache") is invalid', function()
- clear({env={
- XDG_CACHE_HOME='Xtest-missing-xdg-dir',
- NVIM_LOG_FILE='.', -- Any directory is invalid.
- }})
- eq('.nvimlog', eval('$NVIM_LOG_FILE'))
- end)
end)
end)