mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
Fix flake8 error
This commit is contained in:
parent
52ea7d21f4
commit
d328f7e765
1 changed files with 1 additions and 1 deletions
|
|
@ -1449,7 +1449,7 @@ def test_strict_persists_after_create_655(fresh_db):
|
|||
"""When strict is passed to create(), it should be stored in _defaults."""
|
||||
table = fresh_db["users"]
|
||||
table.create({"id": int, "name": str}, pk="id", strict=True)
|
||||
assert table._defaults["strict"] == True
|
||||
assert table._defaults["strict"] is True
|
||||
|
||||
|
||||
def test_upsert_uses_pk_from_prior_insert_655(fresh_db):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue