fixup test

This commit is contained in:
evilchili 2024-09-02 19:45:52 -07:00
parent 17a951b1b2
commit 926d2fdaf6

View File

@ -160,8 +160,8 @@ def test_spell_slots(db, carl, wizard):
def test_containers(db, carl):
with db.transaction():
ten_foot_pole = Item(name="10ft. Pole", item_type=ItemType.ITEM, consumable=False)
rope = Item(name="50 ft. of Rope", item_type=ItemType.ITEM, consumable=True, count=50)
ten_foot_pole = Item(name="10ft. Pole")
rope = Item(name="50 ft. of Rope", consumable=True, count=50)
bag_of_holding = Container(name="Bag of Holding")
db.add_or_update([carl, ten_foot_pole, rope, bag_of_holding])