From 682d5f2843558a7d96d33ba0323479b4a4c6295e Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 11 Jan 2024 10:15:52 -0600 Subject: [PATCH] fixed: broken test case that uses method info --- scripts/run_tests.onyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_tests.onyx b/scripts/run_tests.onyx index 87b870ba..64bd5a51 100644 --- a/scripts/run_tests.onyx +++ b/scripts/run_tests.onyx @@ -127,7 +127,7 @@ main :: (args) => { args = .["build", it.source_file]; } else { printf("[{}] Running test {}...\n", context.thread_id, it.source_file); - args = .["run", it.source_file]; + args = .["run", it.source_file, "--generate-method-info"]; } proc := os.process_spawn(thread_data.onyx_cmd, args); -- 2.25.1