Reformatted with black

This commit is contained in:
Simon Willison 2019-12-29 22:09:52 -08:00
commit f0f15d3dc8

View file

@ -18,9 +18,15 @@ def test_upsert_all(fresh_db):
def test_upsert_compound_primary_key(fresh_db):
table = fresh_db["table"]
table.upsert_all([{"species": "dog", "id": 1, "name": "Cleo", "age": 4}, {"species": "cat", "id": 1, "name": "Catbag"}], pk=("species", "id"))
table.upsert_all(
[
{"species": "dog", "id": 1, "name": "Cleo", "age": 4},
{"species": "cat", "id": 1, "name": "Catbag"},
],
pk=("species", "id"),
)
table.upsert_all([{"species": "dog", "id": 1, "age": 5}], pk=("species", "id"))
assert [
{"species": "dog", "id": 1, "name": "Cleo", "age": 5},
{"species": "cat", "id": 1, "name": "Catbag", "age": None},
] == list(table.rows)
] == list(table.rows)