aboutsummaryrefslogtreecommitdiff
path: root/tests/error.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/error.lua')
-rw-r--r--tests/error.lua9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/error.lua b/tests/error.lua
index 126161e..a1ba1ce 100644
--- a/tests/error.lua
+++ b/tests/error.lua
@@ -95,12 +95,12 @@ local make_table_error_mt = function()
95end 95end
96 96
97local lane_error_as_string = "'lane error as string'" 97local lane_error_as_string = "'lane error as string'"
98local lane_error_as_table = setmetatable({}, make_table_error_mt()) 98local lane_error_as_table = setmetatable({"lane error as table"}, make_table_error_mt())
99local lane_error_as_linda = lanes.linda("'lane error'") 99local lane_error_as_linda = lanes.linda("'lane error'")
100 100
101local finalizer_error_as_string = "'lane error as string'" 101local finalizer_error_as_string = "'finalizer error as string'"
102local finalizer_error_as_table = setmetatable({}, make_table_error_mt()) 102local finalizer_error_as_table = setmetatable({"finalizer error as table"}, make_table_error_mt())
103local finalizer_error_as_linda = lanes.linda("'lane error'") 103local finalizer_error_as_linda = lanes.linda("'finalizer error'")
104 104
105local test_settings = {} 105local test_settings = {}
106local configure_tests = function() 106local configure_tests = function()
@@ -150,6 +150,7 @@ local configure_tests = function()
150 end 150 end
151 end 151 end
152 end 152 end
153 WR "Tests configured"
153end 154end
154 155
155configure_tests() 156configure_tests()