Apply black formatting

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01E7af8SxFZqiCerJB6MqKnY
This commit is contained in:
Claude 2026-07-07 15:03:27 +00:00
commit f9554d36e4
No known key found for this signature in database
2 changed files with 5 additions and 9 deletions

View file

@ -998,9 +998,9 @@ def test_insert_ignore_reports_existing_row(fresh_db):
table = fresh_db["docs"].insert({"id": 1, "title": "One"}, ignore=True)
assert table.last_rowid == 1
assert table.last_pk == 1
assert list(
fresh_db["docs"].rows_where("rowid = ?", [table.last_rowid])
) == [{"id": 1, "title": "Exists"}]
assert list(fresh_db["docs"].rows_where("rowid = ?", [table.last_rowid])) == [
{"id": 1, "title": "Exists"}
]
@pytest.mark.parametrize("rowid_alias", ("rowid", "_rowid_", "oid"))