summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/sqlite3/test/regression.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/sqlite3/test/regression.py b/Lib/sqlite3/test/regression.py
index 45eae90..2cc8f30 100644
--- a/Lib/sqlite3/test/regression.py
+++ b/Lib/sqlite3/test/regression.py
@@ -115,8 +115,9 @@ class RegressionTests(unittest.TestCase):
pysqlite would crash with older SQLite versions unless
a workaround is implemented.
"""
- self.con.execute("create table if not exists foo(bar)")
- self.con.execute("create table if not exists foo(bar)")
+ self.con.execute("create table foo(bar)")
+ self.con.execute("drop table foo")
+ self.con.execute("create table foo(bar)")
def CheckEmptyStatement(self):
"""