diff options
author | drebs <drebs@leap.se> | 2012-12-06 11:15:42 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2012-12-06 11:15:42 -0200 |
commit | 7f9d25e79266e64b03a57a34fb799e41a0cab678 (patch) | |
tree | 079ebfe2748812306e3d0742ab930f7e092af9d7 /tests/__init__.py | |
parent | 84e4bf0a810e097f7d4a4aed7bfc611050392afd (diff) |
Move log classes so all backends can use them.
Diffstat (limited to 'tests/__init__.py')
-rw-r--r-- | tests/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/__init__.py b/tests/__init__.py index 8e0a5c52..b6585755 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -7,13 +7,13 @@ import unittest import os import u1db -from soledad import GPGWrapper -from soledad.backends import leap -from soledad.backends.openstack import ( +from soledad import ( + GPGWrapper, SimpleLog, TransactionLog, SyncLog, ) +from soledad.backends import leap class EncryptedSyncTestCase(unittest.TestCase): |