diff --git a/test/sophia/index_random_test.lua b/test/sophia/index_random_test.lua
index 5fb09f03c2b4c48723d45c62fd7181b1a5e0da73..00838e83e1d78527af6fbb6041899831fdcc368b 100644
--- a/test/sophia/index_random_test.lua
+++ b/test/sophia/index_random_test.lua
@@ -17,14 +17,11 @@ function index_random_test(space, index_no)
 			error('too many iterations')
 			return nil
 		end
-
 		local tuple = space.index[index_no]:random(rnd)
 		if tuple == nil then
 			error('nil returned')
 			return nil
 		end
-		print(tuple)
-
 		local k = tuple[1]
 		if tuples[k] == nil then
 			found = found + 1