diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-01-17 13:46:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-17 13:46:55 +0000 |
commit | e855a80c72ed89815255bb6ff38bff27e58e523f (patch) | |
tree | ecb2245caed90d99785df194199cf971284852ee /test/functional/lua/fs_spec.lua | |
parent | d88814ef68b3f2ad3ed005ee0683eff063b017a6 (diff) | |
parent | 14b7ffcf89bc448b626df3d9e19f9f5a3682ae2b (diff) | |
download | rneovim-e855a80c72ed89815255bb6ff38bff27e58e523f.tar.gz rneovim-e855a80c72ed89815255bb6ff38bff27e58e523f.tar.bz2 rneovim-e855a80c72ed89815255bb6ff38bff27e58e523f.zip |
Merge pull request #27024 from lewis6991/test_followup
test: big cleanup followup + typing
Diffstat (limited to 'test/functional/lua/fs_spec.lua')
-rw-r--r-- | test/functional/lua/fs_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/fs_spec.lua b/test/functional/lua/fs_spec.lua index 66ba0f71f2..6821fe3c5e 100644 --- a/test/functional/lua/fs_spec.lua +++ b/test/functional/lua/fs_spec.lua @@ -6,8 +6,8 @@ local eq = helpers.eq local mkdir_p = helpers.mkdir_p local rmdir = helpers.rmdir local nvim_dir = helpers.nvim_dir -local test_build_dir = helpers.test_build_dir -local test_source_path = helpers.test_source_path +local test_build_dir = helpers.paths.test_build_dir +local test_source_path = helpers.paths.test_source_path local nvim_prog = helpers.nvim_prog local is_os = helpers.is_os local mkdir = helpers.mkdir |