mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-27 12:24:11 +02:00
Fixed typo
This commit is contained in:
parent
ee017cdbdd
commit
092e1368ed
1 changed files with 2 additions and 2 deletions
|
|
@ -232,7 +232,7 @@ def test_upsert_rows_alter_table(fresh_db):
|
||||||
table.insert({"id": 1, "title": "Hedgehogs of the world", "author_id": 1}, pk="id")
|
table.insert({"id": 1, "title": "Hedgehogs of the world", "author_id": 1}, pk="id")
|
||||||
table.upsert_all(
|
table.upsert_all(
|
||||||
[
|
[
|
||||||
{"id": 1, "title": "Hedgedogs of the World", "species": "hedgehogs"},
|
{"id": 1, "title": "Hedgehogs of the World", "species": "hedgehogs"},
|
||||||
{"id": 2, "title": "Squirrels of the World", "num_species": 200},
|
{"id": 2, "title": "Squirrels of the World", "num_species": 200},
|
||||||
{
|
{
|
||||||
"id": 3,
|
"id": 3,
|
||||||
|
|
@ -257,7 +257,7 @@ def test_upsert_rows_alter_table(fresh_db):
|
||||||
"num_species": None,
|
"num_species": None,
|
||||||
"significant_continents": None,
|
"significant_continents": None,
|
||||||
"species": "hedgehogs",
|
"species": "hedgehogs",
|
||||||
"title": "Hedgedogs of the World",
|
"title": "Hedgehogs of the World",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author_id": None,
|
"author_id": None,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue