From 092e1368edc4e7f4cb337a62eabd9a6e1245006b Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 25 May 2019 07:24:17 -0700 Subject: [PATCH] Fixed typo --- tests/test_create.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_create.py b/tests/test_create.py index 2cb2f6b..0420d7d 100644 --- a/tests/test_create.py +++ b/tests/test_create.py @@ -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.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": 3, @@ -257,7 +257,7 @@ def test_upsert_rows_alter_table(fresh_db): "num_species": None, "significant_continents": None, "species": "hedgehogs", - "title": "Hedgedogs of the World", + "title": "Hedgehogs of the World", }, { "author_id": None,