diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-01-30 01:42:43 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-01-30 01:42:43 +0900 |
commit | 2fa26259015237d3fce193a7e07ab5d3c1fbbc79 (patch) | |
tree | f5b823ac3d6ed65a7bffc10f2ec035ae15b85e4a /test | |
parent | 9bc485f53d4606a142fc676119670cda6d83dcce (diff) | |
download | vim-lsp-settings-2fa26259015237d3fce193a7e07ab5d3c1fbbc79.tar.gz vim-lsp-settings-2fa26259015237d3fce193a7e07ab5d3c1fbbc79.tar.bz2 vim-lsp-settings-2fa26259015237d3fce193a7e07ab5d3c1fbbc79.zip |
Add p for mkdir()
Diffstat (limited to 'test')
-rw-r--r-- | test/lsp_settings.vimspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lsp_settings.vimspec b/test/lsp_settings.vimspec index 1303780..ff59d09 100644 --- a/test/lsp_settings.vimspec +++ b/test/lsp_settings.vimspec @@ -27,7 +27,7 @@ Describe lsp_settings try call delete(l:servers_dir . '/foo-bar', 'rf') - call mkdir(l:servers_dir . '/foo-bar') + call mkdir(l:servers_dir . '/foo-bar', 'p') call writefile(['echo foo-bar'], l:servers_dir . '/foo-bar/foo-bar.cmd') Assert Equals(lsp_settings#executable('foo-bar'), 1) finally |