Skip to content

Commit 16d7008

Browse files
committed
Applied black
1 parent 5986083 commit 16d7008

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

tests/test_update.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,7 @@ def test_update_alter(fresh_db):
6868

6969
def test_update_with_no_values_sets_last_pk(fresh_db):
7070
table = fresh_db.table("dogs", pk="id")
71-
table.insert_all([{
72-
"id": 1,
73-
"name": "Cleo",
74-
}, {
75-
"id": 2,
76-
"name": "Pancakes"
77-
}])
71+
table.insert_all([{"id": 1, "name": "Cleo"}, {"id": 2, "name": "Pancakes"}])
7872
table.update(1)
7973
assert 1 == table.last_pk
8074
table.update(2)

0 commit comments

Comments
 (0)