From 926d2fdaf6addd34217d0df73100898cbc26b372 Mon Sep 17 00:00:00 2001 From: evilchili Date: Mon, 2 Sep 2024 19:45:52 -0700 Subject: [PATCH] fixup test --- test/test_inventories.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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])