aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2025-04-21 20:43:51 -0500
committeramelia squires <[email protected]>2025-04-21 20:43:51 -0500
commitaf975d63f67e6cc2d17f1804acb66328905f8701 (patch)
treeab23744e784044d29cc73cd1da4070011e7e858c /tests
parentb2ee662b4621282b137a2a2cf1be13bd60073c5a (diff)
better version support, fixes, and memory saftey
Diffstat (limited to 'tests')
-rw-r--r--tests/hash.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/hash.lua b/tests/hash.lua
index d314167..898b0e6 100644
--- a/tests/hash.lua
+++ b/tests/hash.lua
@@ -2,6 +2,10 @@ llib = require "lullaby"
--llib.io.log = function() end
+if table.unpack == nil then
+ table.unpack = llib.array.unpack
+end
+
local hashes_working = 0
local hashes_failed = 0
local functions_working = 0