summaryrefslogtreecommitdiff
path: root/macaroonbakery/tests/test_store.py
diff options
context:
space:
mode:
Diffstat (limited to 'macaroonbakery/tests/test_store.py')
-rw-r--r--macaroonbakery/tests/test_store.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/macaroonbakery/tests/test_store.py b/macaroonbakery/tests/test_store.py
index 7bcc4c2..5afa7be 100644
--- a/macaroonbakery/tests/test_store.py
+++ b/macaroonbakery/tests/test_store.py
@@ -2,12 +2,12 @@
# Licensed under the LGPLv3, see LICENCE file for details.
from unittest import TestCase
-import macaroonbakery
+import macaroonbakery as bakery
class TestOven(TestCase):
def test_mem_store(self):
- st = macaroonbakery.MemoryKeyStore()
+ st = bakery.MemoryKeyStore()
key, id = st.root_key()
self.assertEqual(len(key), 24)