diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-04-11 08:51:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 08:51:06 +0800 |
commit | 4528a69c8772a5fe182fb293b929dfcfad112abc (patch) | |
tree | 3ba275d5be425811b1e82ec5f956758d4cabd08d /test/functional/preload.lua | |
parent | 509c053161c0495ac41cf12343089059afb4e813 (diff) | |
download | rneovim-4528a69c8772a5fe182fb293b929dfcfad112abc.tar.gz rneovim-4528a69c8772a5fe182fb293b929dfcfad112abc.tar.bz2 rneovim-4528a69c8772a5fe182fb293b929dfcfad112abc.zip |
test: remove unnecessary nil argument to testutil (#28270)
Diffstat (limited to 'test/functional/preload.lua')
-rw-r--r-- | test/functional/preload.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/preload.lua b/test/functional/preload.lua index 9f17ecd66c..24e528bc5b 100644 --- a/test/functional/preload.lua +++ b/test/functional/preload.lua @@ -1,7 +1,7 @@ -- Modules loaded here will NOT be cleared and reloaded by Busted. -- Busted started doing this to help provide more isolation. See issue #62 -- for more information about this. -local t = require('test.functional.testutil')(nil) +local t = require('test.functional.testutil')() require('test.functional.ui.screen') local is_os = t.is_os |