@@ -4255,11 +4255,11 @@ def test_xsqlite_execute_fail(sqlite_buildin):
4255
4255
cur .execute (create_sql )
4256
4256
4257
4257
with sql .pandasSQL_builder (sqlite_buildin ) as pandas_sql :
4258
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " bar" , 1.234)' )
4259
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " baz" , 2.567)' )
4258
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' bar' , 1.234)" )
4259
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' baz' , 2.567)" )
4260
4260
4261
4261
with pytest .raises (sql .DatabaseError , match = "Execution failed on sql" ):
4262
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " bar" , 7)' )
4262
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' bar' , 7)" )
4263
4263
4264
4264
4265
4265
def test_xsqlite_execute_closed_connection ():
@@ -4277,7 +4277,7 @@ def test_xsqlite_execute_closed_connection():
4277
4277
cur .execute (create_sql )
4278
4278
4279
4279
with sql .pandasSQL_builder (conn ) as pandas_sql :
4280
- pandas_sql .execute (' INSERT INTO test VALUES(" foo", " bar" , 1.234)' )
4280
+ pandas_sql .execute (" INSERT INTO test VALUES(' foo', ' bar' , 1.234)" )
4281
4281
4282
4282
msg = "Cannot operate on a closed database."
4283
4283
with pytest .raises (sqlite3 .ProgrammingError , match = msg ):
0 commit comments