aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/nameof.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/nameof.lua b/tests/nameof.lua
index f48a971..1abcf3d 100644
--- a/tests/nameof.lua
+++ b/tests/nameof.lua
@@ -1,8 +1,8 @@
1local lanes = require "lanes".configure{nb_user_keepers = 100, on_state_create = function() end} 1local lanes = require "lanes".configure{nb_user_keepers = 100, on_state_create = function() end}
2 2
3local SLEEP = function(...) 3local SLEEP = function(...)
4 local k, v = lanes.sleep(...) 4 local k, v = lanes.sleep(...)
5 assert(k == nil and v == "timeout") 5 assert(k == nil and v == "timeout")
6end 6end
7 7
8print("Name of table: ", lanes.nameof({})) 8print("Name of table: ", lanes.nameof({}))