Skip to content

Commit

Permalink
Fix typo in testcase name.
Browse files Browse the repository at this point in the history
Replaces #22, thanks @roddehugo
  • Loading branch information
coleifer committed Dec 15, 2023
1 parent 2f50b05 commit df2eab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def test_dml_detection_vacuum(self):
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()
Expand Down

0 comments on commit df2eab9

Please sign in to comment.