Fix typo in testcase name.

Replaces #22, thanks @roddehugo
This commit is contained in:
Charles Leifer 2023-12-15 08:24:55 -06:00
parent 2f50b05798
commit df2eab9f27

View file

@ -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()