From df2eab9f2772f671d08ea0de21bfa0f13533a441 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Fri, 15 Dec 2023 08:24:55 -0600 Subject: [PATCH] Fix typo in testcase name. Replaces #22, thanks @roddehugo --- test/transactions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/transactions.py b/test/transactions.py index 46105fe..fff320c 100644 --- a/test/transactions.py +++ b/test/transactions.py @@ -276,7 +276,7 @@ class DMLStatementDetectionTestCase(unittest.TestCase): conn.execute('vacuum') self.assertFalse(conn.in_transaction) - def test_dml_detection_vacuum(self): + def test_dml_detection_pragma(self): conn = sqlite.connect(get_db_path()) conn.execute('pragma journal_mode=\'wal\'') jmode, = conn.execute('pragma journal_mode').fetchone()