From d037a0af0eb82095e32ac790e70efcd7ce86814b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 26 Nov 2023 12:52:50 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20test=20after=20local=20mod?= =?UTF-8?q?ifications?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_insert_assert.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_insert_assert.py b/tests/test_insert_assert.py index c368326..d67dd1b 100644 --- a/tests/test_insert_assert.py +++ b/tests/test_insert_assert.py @@ -191,12 +191,12 @@ def test_dict(insert_assert): "tags": ["validation", "json"], "name": "Pydantic", }, - {"name": "FastAPI", "description": "Web API framework in Python"}, + {"description": "Web API framework in Python", "name": "FastAPI"}, {"description": "DBs and Python", "name": "SQLModel"}, {"name": "ARQ"}, ], "baz": 6, - "foo": 12, + "foo": 1, } insert_assert(new_data, old_data) """ @@ -245,4 +245,4 @@ def test_dict(insert_assert): "baz": 6, } """ - ) \ No newline at end of file + )