aboutsummaryrefslogtreecommitdiff
path: root/tests/error.lua
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2025-03-14 14:53:09 +0100
committerBenoit Germain <benoit.germain@ubisoft.com>2025-03-14 14:53:09 +0100
commit512f4c0b46ea5cc359e673b7379cd81925863121 (patch)
tree1e72167d8d63f44109719db9643d4c0445b17d57 /tests/error.lua
parent0aa030db022c57947afbae3b97038a403973e3cd (diff)
downloadlanes-master.tar.gz
lanes-master.tar.bz2
lanes-master.zip
Give a name to all lanes in the testsHEADmaster
Diffstat (limited to 'tests/error.lua')
-rw-r--r--tests/error.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/error.lua b/tests/error.lua
index 243dd57..306c51d 100644
--- a/tests/error.lua
+++ b/tests/error.lua
@@ -87,7 +87,7 @@ end
87--################################################################################################## 87--##################################################################################################
88 88
89local start_lane = function(error_reporting_mode_, error_value_, finalizer_, finalizer_error_value_) 89local start_lane = function(error_reporting_mode_, error_value_, finalizer_, finalizer_error_value_)
90 return lanes.gen("*", {error_trace_level = error_reporting_mode_}, lane_body)(error_value_, finalizer_, finalizer_error_value_) 90 return lanes.gen("*", { name = 'auto', error_trace_level = error_reporting_mode_ }, lane_body)(error_value_, finalizer_, finalizer_error_value_)
91end 91end
92 92
93--################################################################################################## 93--##################################################################################################