We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe175a8 commit be7e467Copy full SHA for be7e467
Lib/sqlite3/test/hooks.py
@@ -237,7 +237,7 @@ def trace(statement):
237
traced_statements.append(statement)
238
con.set_trace_callback(trace)
239
con.execute("create table foo(x)")
240
- con.execute('insert into foo(x) values ("%s")' % unicode_value)
+ con.execute("insert into foo(x) values ('%s')" % unicode_value)
241
con.commit()
242
self.assertTrue(any(unicode_value in stmt for stmt in traced_statements),
243
"Unicode data %s garbled in trace callback: %s"
0 commit comments