Skip to content

Commit 731288f

Browse files
committed
fix test
1 parent bd53091 commit 731288f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_parse_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def test_load_generated_items(self):
6060
loaded_items = parse_utils.load_items(items['items'])
6161
assert(len(loaded_items) == 1)
6262
assert(loaded_items['Woolly gloves'])
63-
assert(loaded_items['Woolly gloves'].wear_location == None)
63+
assert(loaded_items['Woolly gloves'].wear_location == WearLocation.TORSO)
6464

6565
items_string_with_loc = '{"items": [{"name":"Woolly gloves", "type":"Wearable", "wear_location":"HANDS"}]}'
6666

0 commit comments

Comments
 (0)