summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sqlite3/test_userfunctions.py
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-01-22 16:03:56 (GMT)
committerGitHub <noreply@github.com>2022-01-22 16:03:56 (GMT)
commit55f4ec460ee6dcffc26180fd982ad89083c9acb1 (patch)
tree7f7a4ebb56aa8df5105c3ed85496b90e98bcfa37 /Lib/test/test_sqlite3/test_userfunctions.py
parent101a184d49756043a0c39dde6eca08b1891137a2 (diff)
downloadcpython-55f4ec460ee6dcffc26180fd982ad89083c9acb1.zip
cpython-55f4ec460ee6dcffc26180fd982ad89083c9acb1.tar.gz
cpython-55f4ec460ee6dcffc26180fd982ad89083c9acb1.tar.bz2
bpo-46425: use absolute imports in `test_sqlite3` (GH-30676)
Diffstat (limited to 'Lib/test/test_sqlite3/test_userfunctions.py')
-rw-r--r--Lib/test/test_sqlite3/test_userfunctions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sqlite3/test_userfunctions.py b/Lib/test/test_sqlite3/test_userfunctions.py
index 996437b..b290608 100644
--- a/Lib/test/test_sqlite3/test_userfunctions.py
+++ b/Lib/test/test_sqlite3/test_userfunctions.py
@@ -32,7 +32,7 @@ import unittest.mock
import sqlite3 as sqlite
from test.support import bigmemtest, catch_unraisable_exception
-from .test_dbapi import cx_limit
+from test.test_sqlite3.test_dbapi import cx_limit
def with_tracebacks(exc, regex="", name=""):