summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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")