@@ -4282,11 +4282,11 @@ def test_xsqlite_execute_fail(sqlite_buildin):
4282
4282
cur .execute (create_sql )
4283
4283
4284
4284
with sql .pandasSQL_builder (sqlite_buildin ) as pandas_sql :
4285
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " bar" , 1.234)' )
4286
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " baz" , 2.567)' )
4285
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' bar' , 1.234)" )
4286
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' baz' , 2.567)" )
4287
4287
4288
4288
with pytest .raises (sql .DatabaseError , match = "Execution failed on sql" ):
4289
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " bar" , 7)' )
4289
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' bar' , 7)" )
4290
4290
4291
4291
4292
4292
def test_xsqlite_execute_closed_connection ():
@@ -4304,7 +4304,7 @@ def test_xsqlite_execute_closed_connection():
4304
4304
cur .execute (create_sql )
4305
4305
4306
4306
with sql .pandasSQL_builder (conn ) as pandas_sql :
4307
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " bar" , 1.234)' )
4307
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' bar' , 1.234)" )
4308
4308
4309
4309
msg = "Cannot operate on a closed database."
4310
4310
with pytest .raises (sqlite3 .ProgrammingError , match = msg ):
0 commit comments