From: Erlend Egeberg Aasland Date: Tue, 26 Jul 2022 19:18:16 +0000 (+0200) Subject: gh-95291: Use import helper to improve sqlite3 audit tests (#95292) X-Git-Tag: v3.12.0a1~832 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=152eb90311fdf294510b5d077332580ba18c0ee4;p=thirdparty%2FPython%2Fcpython.git gh-95291: Use import helper to improve sqlite3 audit tests (#95292) Now the tests are correctly reported as skipped if sqlite3 is not available. --- diff --git a/Lib/test/test_audit.py b/Lib/test/test_audit.py index 6a025f39912e..a7ff038c0936 100644 --- a/Lib/test/test_audit.py +++ b/Lib/test/test_audit.py @@ -155,10 +155,7 @@ class AuditTest(unittest.TestCase): def test_sqlite3(self): - try: - import sqlite3 - except ImportError: - return + sqlite3 = import_helper.import_module("sqlite3") returncode, events, stderr = self.run_python("test_sqlite3") if returncode: self.fail(stderr)