From f118661a18f9e0cc692bfec226f38c26f5fe0558 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 26 Jul 2022 12:40:59 -0700 Subject: [PATCH] gh-95291: Use import helper to improve sqlite3 audit tests (GH-95292) Now the tests are correctly reported as skipped if sqlite3 is not available. (cherry picked from commit 152eb90311fdf294510b5d077332580ba18c0ee4) Co-authored-by: Erlend Egeberg Aasland --- Lib/test/test_audit.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Lib/test/test_audit.py b/Lib/test/test_audit.py index c5ce26323b5f..04c9d6b85539 100644 --- a/Lib/test/test_audit.py +++ b/Lib/test/test_audit.py @@ -152,10 +152,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) -- 2.47.3