From 98b3e9d391fb6d94b6adb6f3bbaefc3d12fcaa55 Mon Sep 17 00:00:00 2001 From: VorTechnix <45538536+VorTechnix@users.noreply.github.com> Date: Thu, 17 Oct 2024 21:16:02 -0700 Subject: [PATCH] fixed test dir path --- worldeditadditions_commands/commands/test/test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldeditadditions_commands/commands/test/test.lua b/worldeditadditions_commands/commands/test/test.lua index 28fa024..9d430e7 100644 --- a/worldeditadditions_commands/commands/test/test.lua +++ b/worldeditadditions_commands/commands/test/test.lua @@ -10,7 +10,7 @@ local wea_cmd = worldeditadditions_commands local test_dir = wea_cmd.modpath .. "/commands/test/" -- Load tests with init function -dofile(test_dir .. "tests/init.lua")(test_dir) +dofile(test_dir .. "tests/init.lua")(test_dir .. "tests/") local tests = worldeditadditions.normalize_test.get_registered_tests() -- Helper functions