Removed rogue print() from test

This commit is contained in:
Simon Willison 2020-06-05 12:06:43 -07:00
commit 033a1bb22c

View file

@ -162,7 +162,6 @@ async def test_execute_write_fn_block_false(db):
with conn:
conn.execute("delete from roadside_attractions where pk = 1;")
row = conn.execute("select count(*) from roadside_attractions").fetchone()
print("row = ", row)
return row[0]
task_id = await db.execute_write_fn(write_fn)