aboutsummaryrefslogtreecommitdiff
path: root/unit_tests/scripts/lane/cooperative_shutdown.lua
diff options
context:
space:
mode:
Diffstat (limited to 'unit_tests/scripts/lane/cooperative_shutdown.lua')
-rw-r--r--unit_tests/scripts/lane/cooperative_shutdown.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/unit_tests/scripts/lane/cooperative_shutdown.lua b/unit_tests/scripts/lane/cooperative_shutdown.lua
index 1204e35..756e33c 100644
--- a/unit_tests/scripts/lane/cooperative_shutdown.lua
+++ b/unit_tests/scripts/lane/cooperative_shutdown.lua
@@ -31,9 +31,9 @@ end
31 31
32 32
33-- the generators 33-- the generators
34local g1 = lanes.gen("*", lane1) 34local g1 = lanes.gen("*", { name = 'auto' }, lane1)
35local g2 = lanes.gen("*", lane2) 35local g2 = lanes.gen("*", { name = 'auto' }, lane2)
36local g3 = lanes.gen("*", lane3) 36local g3 = lanes.gen("*", { name = 'auto' }, lane3)
37 37
38-- launch lanes 38-- launch lanes
39local h1 = g1() 39local h1 = g1()