aboutsummaryrefslogtreecommitdiff
path: root/tests/hash.lua
diff options
context:
space:
mode:
authorame <[email protected]>2024-03-08 14:14:39 -0600
committerame <[email protected]>2024-03-08 14:14:39 -0600
commit652146a3a4780ede6cc99ae56871f8f6bb506284 (patch)
tree0aae88a063da581c90b2eec987c77a53dda986ef /tests/hash.lua
parent935cd9eed5863614dbb2c677c95aee73753e611f (diff)
fixed hashes and net stuff
Diffstat (limited to 'tests/hash.lua')
-rw-r--r--tests/hash.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hash.lua b/tests/hash.lua
index 76cb4a5..b4e455a 100644
--- a/tests/hash.lua
+++ b/tests/hash.lua
@@ -3,7 +3,7 @@ require "llib"
function test(name,b,exp)
local hash = llib.crypto[name](b)
if not (hash == exp) then
- llib.io.error(name.." not working, got "..hash.." wanted "..exp)
+ llib.io.error(name.." not working, got \n\t"..hash.." wanted\n\t"..exp)
else
llib.io.log(name.." was correct, "..hash)
end