From aee8dbe5400314cd2c56263b5317864eb6220ee8 Mon Sep 17 00:00:00 2001
From: hofmockel <dreagonfly@gmx.de>
Date: Sun, 5 Jul 2015 14:16:20 +0200
Subject: [PATCH] Remove prints from the tests.

---
 rocksdb/tests/test_db.py | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/rocksdb/tests/test_db.py b/rocksdb/tests/test_db.py
index 0a71f4c..4b25a6d 100644
--- a/rocksdb/tests/test_db.py
+++ b/rocksdb/tests/test_db.py
@@ -74,13 +74,6 @@ class TestDB(unittest.TestCase, TestHelper):
         self.assertEqual(ref, ret)
 
     def test_write_batch_iter(self):
-        batch = rocksdb.WriteBatch()
-        batch.put(b"key1", b"v1")
-        batch.delete(b'a')
-        batch.merge(b'xxx', b'value')
-        for op, key, value in batch:
-            print op, key, value
-
         batch = rocksdb.WriteBatch()
         self.assertEqual([], list(batch))
 
-- 
GitLab