From 0c645d2850aacf34134bf906281aad78eec18f49 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Fri, 9 Aug 2019 11:03:07 -0500 Subject: [PATCH] Fix copy/paste of pysqlite3. --- test/dbapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dbapi.py b/test/dbapi.py index a642b9b..00702d6 100644 --- a/test/dbapi.py +++ b/test/dbapi.py @@ -23,10 +23,10 @@ import threading import unittest -from pysqlite3 import dbapi2 as sqlite +from sqlcipher3 import dbapi2 as sqlite #from test.support import TESTFN, unlink -TESTFN = '/tmp/pysqlite3_test' +TESTFN = '/tmp/sqlcipher3_test' from os import unlink