aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/cancel.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/cancel.lua b/tests/cancel.lua
index 84203f1..5862c85 100644
--- a/tests/cancel.lua
+++ b/tests/cancel.lua
@@ -27,7 +27,8 @@ local linda = lanes.linda()
27linda:set("val", 33.0) 27linda:set("val", 33.0)
28 28
29-- so that we can easily swap between lanes.gen and lanes.coro, to try stuff 29-- so that we can easily swap between lanes.gen and lanes.coro, to try stuff
30local generator = lanes.coro 30-- TODO: looks like the result changes when using LuaJIT and coro together. to be investigated
31local generator = lanes.gen
31 32
32-- ################################################################################################## 33-- ##################################################################################################
33 34