Skip to content
Snippets Groups Projects
Commit aee8dbe5 authored by hofmockel's avatar hofmockel
Browse files

Remove prints from the tests.

parent 65c274c3
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment