Skip to content

Commit

Permalink
πŸ› Fix test after local modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
tiangolo committed Nov 26, 2023
1 parent 7d9bf19 commit d037a0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_insert_assert.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
"""
Expand Down Expand Up @@ -245,4 +245,4 @@ def test_dict(insert_assert):
"baz": 6,
}
"""
)
)

0 comments on commit d037a0a

Please sign in to comment.