From 512f4c0b46ea5cc359e673b7379cd81925863121 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Fri, 14 Mar 2025 14:53:09 +0100 Subject: Give a name to all lanes in the tests --- unit_tests/scripts/coro/basics.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unit_tests/scripts/coro') diff --git a/unit_tests/scripts/coro/basics.lua b/unit_tests/scripts/coro/basics.lua index dc74b7c..cd2f410 100644 --- a/unit_tests/scripts/coro/basics.lua +++ b/unit_tests/scripts/coro/basics.lua @@ -42,7 +42,7 @@ end if true then -- if we start a non-coroutine lane with a yielding function, we should get an error, right? - local fun_g = lanes.gen("*", {name = "auto"}, yielder) + local fun_g = lanes.gen("*", { name = 'auto' }, yielder) local h = fun_g("hello", "world", "!") local err, status, stack = h:join() PRINT(err, status, stack) -- cgit v1.2.3-55-g6feb