default attributes on db object are now queries

This commit is contained in:
evilchili
2024-04-20 23:40:28 -07:00
parent 12c643c542
commit 5ec27e9344
2 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ def test_manage_character(db, classes_factory, ancestries_factory):
# load the fixtures so they are bound to the current session
classes = classes_factory()
ancestries = ancestries_factory()
darkvision = db.session.query(schema.AncestryTrait).filter_by(name="Darkvision")[0]
darkvision = db.AncestryTrait.filter_by(name="Darkvision")[0]
# create a human character (the default)
char = schema.Character(name="Test Character")