summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2020-08-07 21:55:35 (GMT)
committerGitHub <noreply@github.com>2020-08-07 21:55:35 (GMT)
commitfcce8c649a14f7a81fae82f9f203bb5b5ee0c205 (patch)
treed78cff6f9be7c2af7d46feb1c0837636081c05e4 /Lib/sqlite3
parente27a51c11e10d5df79b3e48dc3e7bfedfad5a794 (diff)
downloadcpython-fcce8c649a14f7a81fae82f9f203bb5b5ee0c205.zip
cpython-fcce8c649a14f7a81fae82f9f203bb5b5ee0c205.tar.gz
cpython-fcce8c649a14f7a81fae82f9f203bb5b5ee0c205.tar.bz2
bpo-40275: Use new test.support helper submodules in tests (GH-21772)
Diffstat (limited to 'Lib/sqlite3')
-rw-r--r--Lib/sqlite3/test/dbapi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py
index be11337..119da12 100644
--- a/Lib/sqlite3/test/dbapi.py
+++ b/Lib/sqlite3/test/dbapi.py
@@ -25,7 +25,7 @@ import threading
import unittest
import sqlite3 as sqlite
-from test.support import TESTFN, unlink
+from test.support.os_helper import TESTFN, unlink
class ModuleTests(unittest.TestCase):