Skip to content

Commit d328f7e

Browse files
committed
Fix flake8 error
1 parent 52ea7d2 commit d328f7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1449,7 +1449,7 @@ def test_strict_persists_after_create_655(fresh_db):
14491449
"""When strict is passed to create(), it should be stored in _defaults."""
14501450
table = fresh_db["users"]
14511451
table.create({"id": int, "name": str}, pk="id", strict=True)
1452-
assert table._defaults["strict"] == True
1452+
assert table._defaults["strict"] is True
14531453

14541454

14551455
def test_upsert_uses_pk_from_prior_insert_655(fresh_db):

0 commit comments

Comments
 (0)