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 --- tests/pingpong.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/pingpong.lua') diff --git a/tests/pingpong.lua b/tests/pingpong.lua index 3498f49..06c0903 100644 --- a/tests/pingpong.lua +++ b/tests/pingpong.lua @@ -25,8 +25,8 @@ local pingpong = function(name, qr, qs, start) end -- pingpong("L1", '0', '1', true) -local t1, err1 = lanes.gen("*", pingpong)("L1", 'a', 'b', true) -local t2, err2 = lanes.gen("*", pingpong)("L2", 'b', 'a', false) +local t1, err1 = lanes.gen("*", { name = 'auto' }, pingpong)("L1", 'a', 'b', true) +local t2, err2 = lanes.gen("*", { name = 'auto' }, pingpong)("L2", 'b', 'a', false) t1:join() t2:join() -- cgit v1.2.3-55-g6feb