Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package caskdb for PyPI #19

Merged
merged 14 commits into from
Jul 5, 2024
Prev Previous commit
Next Next commit
use top level imports for tests
  • Loading branch information
tusharsadhwani committed Jun 27, 2024
commit 0b7aa4a724546815f4b27c946a357a468ac6e175
2 changes: 1 addition & 1 deletion tests/test_disk_store.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
import typing
import unittest

from caskdb.disk_store import DiskStorage
from caskdb import DiskStorage


class TempStorageFile:
2 changes: 1 addition & 1 deletion tests/test_memory_store.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from caskdb.memory_store import MemoryStorage
from caskdb import MemoryStorage


class TestInMemoryCaskDB(unittest.TestCase):