Skip to content

Commit b92ca72

Browse files
author
Erlend E. Aasland
committed
Revert f04bd09
This test is added by GH-28074
1 parent f04bd09 commit b92ca72

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Lib/sqlite3/test/dbapi.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -794,13 +794,6 @@ def test_cursor_executescript_too_large_script(self, maxsize):
794794
with self.assertRaises(sqlite.DataError):
795795
cur.executescript("create table a(s);".ljust(size))
796796

797-
def test_cursor_executescript_tx_control(self):
798-
con = sqlite.connect(":memory:")
799-
con.execute("begin")
800-
self.assertTrue(con.in_transaction)
801-
con.executescript("select 1")
802-
self.assertFalse(con.in_transaction)
803-
804797
def test_connection_execute(self):
805798
con = sqlite.connect(":memory:")
806799
result = con.execute("select 5").fetchone()[0]

0 commit comments

Comments
 (0)