diff options
author | Hai Shi <shihai1992@gmail.com> | 2020-07-06 17:12:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 11:12:49 +0200 |
commit | 883bc638335a57a6e6a6344c2fc132c4f9a0ec42 (patch) | |
tree | 1dd74a4aeeb80d8b85ff18de700763199a7bc1bc /Lib/test/test_sqlite.py | |
parent | 9ce8132e1f2339cfe116dfd4795574182c2245b4 (diff) | |
download | cpython-git-883bc638335a57a6e6a6344c2fc132c4f9a0ec42.tar.gz |
bpo-40275: Use new test.support helper submodules in tests (GH-21314)
Diffstat (limited to 'Lib/test/test_sqlite.py')
-rw-r--r-- | Lib/test/test_sqlite.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_sqlite.py b/Lib/test/test_sqlite.py index 9564da3519..73002f228f 100644 --- a/Lib/test/test_sqlite.py +++ b/Lib/test/test_sqlite.py @@ -1,7 +1,8 @@ import test.support +from test.support import import_helper # Skip test if _sqlite3 module not installed -test.support.import_module('_sqlite3') +import_helper.import_module('_sqlite3') import unittest import sqlite3 |