summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoniEx2 <endermoneymod@gmail.com>2024-06-10 15:01:14 -0300
committerSoniEx2 <endermoneymod@gmail.com>2024-06-10 15:01:14 -0300
commit9c609675ff8e801ffbc27b8bd4fe90466a2dc24a (patch)
treea989ec852f11b2558b72340ecf386f5748701248
parentca6e4d141484331a25cfa67cf370000b74d7725f (diff)
Make bucket tests print something
-rw-r--r--test/bucketmap-tests.cratera1
-rw-r--r--test/defaultbucket.cratera1
2 files changed, 2 insertions, 0 deletions
diff --git a/test/bucketmap-tests.cratera b/test/bucketmap-tests.cratera
index b2e0aaa..37e0c47 100644
--- a/test/bucketmap-tests.cratera
+++ b/test/bucketmap-tests.cratera
@@ -33,3 +33,4 @@ assert(map._buckets[4])
 assert(map:get(Point(0, 1)) == "hello")
 assert(map:get(Point(2, 3)) == "cratera")
 assert(map:get(Point(4, 5)) == "world")
+print("bucketmap tests pass")
diff --git a/test/defaultbucket.cratera b/test/defaultbucket.cratera
index fd7281e..573e197 100644
--- a/test/defaultbucket.cratera
+++ b/test/defaultbucket.cratera
@@ -20,3 +20,4 @@ assert(hash_n(2) == 2)
 assert(hash_n(-1) == 1)
 assert(hash_s("") == 0)
 assert(hash_s("h") == string.byte("h")+31)
+print("defaultbucket tests pass")