From 4528a69c8772a5fe182fb293b929dfcfad112abc Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 11 Apr 2024 08:51:06 +0800 Subject: test: remove unnecessary nil argument to testutil (#28270) --- test/functional/preload.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/preload.lua') 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 -- cgit