diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-01-22 16:03:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-22 16:03:56 (GMT) |
commit | 55f4ec460ee6dcffc26180fd982ad89083c9acb1 (patch) | |
tree | 7f7a4ebb56aa8df5105c3ed85496b90e98bcfa37 /Lib/test/test_sqlite3/test_userfunctions.py | |
parent | 101a184d49756043a0c39dde6eca08b1891137a2 (diff) | |
download | cpython-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.py | 2 |
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=""): |