From b848bfa450c1882f65d01b2adc57b9c8263539bd Mon Sep 17 00:00:00 2001 From: drebs Date: Tue, 12 Feb 2013 16:41:26 -0200 Subject: Adapt code and tests to use pysqlcipher. --- tests/u1db_tests/__init__.py | 2 +- tests/u1db_tests/test_sqlite_backend.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/u1db_tests') diff --git a/tests/u1db_tests/__init__.py b/tests/u1db_tests/__init__.py index 27aa4d79..43304b43 100644 --- a/tests/u1db_tests/__init__.py +++ b/tests/u1db_tests/__init__.py @@ -30,7 +30,7 @@ except ImportError: from wsgiref import simple_server from oauth import oauth -from sqlite3 import dbapi2 +from pysqlcipher import dbapi2 from StringIO import StringIO import testscenarios diff --git a/tests/u1db_tests/test_sqlite_backend.py b/tests/u1db_tests/test_sqlite_backend.py index 2003da03..1380e4b1 100644 --- a/tests/u1db_tests/test_sqlite_backend.py +++ b/tests/u1db_tests/test_sqlite_backend.py @@ -20,7 +20,7 @@ import os import time import threading -from sqlite3 import dbapi2 +from pysqlcipher import dbapi2 from u1db import ( errors, -- cgit v1.2.3