diff options
author | Victor Shyba <victor1984@riseup.net> | 2017-05-08 05:56:20 -0300 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2017-05-08 05:56:20 -0300 |
commit | 3ff522b687dcccd1ada5da5aba526057befec007 (patch) | |
tree | 4f3c9e2d2f4744cfeed4e82d780577bac79e4293 /testing/test_soledad | |
parent | ac0e01ccf4a7d372cddea03ae1982a01e28b9cd0 (diff) |
[refactor] _database -> _db
Diffstat (limited to 'testing/test_soledad')
-rw-r--r-- | testing/test_soledad/u1db_tests/__init__.py | 2 | ||||
-rw-r--r-- | testing/test_soledad/u1db_tests/test_open.py | 2 | ||||
-rw-r--r-- | testing/test_soledad/util.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/testing/test_soledad/u1db_tests/__init__.py b/testing/test_soledad/u1db_tests/__init__.py index ccbb6ca6..2a4415a6 100644 --- a/testing/test_soledad/u1db_tests/__init__.py +++ b/testing/test_soledad/u1db_tests/__init__.py @@ -41,7 +41,7 @@ from leap.soledad.common.l2db.remote import server_state from leap.soledad.common.l2db.remote import http_app from leap.soledad.common.l2db.remote import http_target -from leap.soledad.client._database import sqlite +from leap.soledad.client._db import sqlite if sys.version_info[0] < 3: from pysqlcipher import dbapi2 diff --git a/testing/test_soledad/u1db_tests/test_open.py b/testing/test_soledad/u1db_tests/test_open.py index eaaee72f..4ca0c4a7 100644 --- a/testing/test_soledad/u1db_tests/test_open.py +++ b/testing/test_soledad/u1db_tests/test_open.py @@ -28,7 +28,7 @@ from test_soledad.u1db_tests.test_backends import TestAlternativeDocument from leap.soledad.common.l2db import errors from leap.soledad.common.l2db import open as u1db_open -from leap.soledad.client._database import sqlite +from leap.soledad.client._db import sqlite @skip("Skiping tests imported from U1DB.") diff --git a/testing/test_soledad/util.py b/testing/test_soledad/util.py index 0335d544..b814d5ca 100644 --- a/testing/test_soledad/util.py +++ b/testing/test_soledad/util.py @@ -47,8 +47,8 @@ from leap.soledad.client import Soledad from leap.soledad.client import http_target from leap.soledad.client import auth from leap.soledad.client._crypto import is_symmetrically_encrypted -from leap.soledad.client._database.sqlcipher import SQLCipherDatabase -from leap.soledad.client._database.sqlcipher import SQLCipherOptions +from leap.soledad.client._db.sqlcipher import SQLCipherDatabase +from leap.soledad.client._db.sqlcipher import SQLCipherOptions from leap.soledad.server import SoledadApp |