move tests

This commit is contained in:
Jack Robison 2021-11-09 13:27:40 -05:00
parent ee12fe9573
commit cf2195e383
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
4 changed files with 0 additions and 2 deletions

View file

@ -69,7 +69,6 @@ class TestDB(TestHelper):
secondary.try_catch_up_with_primary() secondary.try_catch_up_with_primary()
self.assertEqual(b"b", secondary.get(b"a")) self.assertEqual(b"b", secondary.get(b"a"))
def test_multi_get(self): def test_multi_get(self):
self.db.put(b"a", b"1") self.db.put(b"a", b"1")
self.db.put(b"b", b"2") self.db.put(b"b", b"2")

View file

@ -1,6 +1,5 @@
# content of test_sample.py # content of test_sample.py
import rocksdb import rocksdb
import pytest
import shutil import shutil
import os import os
import tempfile import tempfile