diff --git a/test/test_inventories.py b/test/test_inventories.py index 288e974..3cd4d0f 100644 --- a/test/test_inventories.py +++ b/test/test_inventories.py @@ -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])