diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-08-07 21:55:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-07 21:55:35 (GMT) |
commit | fcce8c649a14f7a81fae82f9f203bb5b5ee0c205 (patch) | |
tree | d78cff6f9be7c2af7d46feb1c0837636081c05e4 /Lib/sqlite3 | |
parent | e27a51c11e10d5df79b3e48dc3e7bfedfad5a794 (diff) | |
download | cpython-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.py | 2 |
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): |